aboutsummaryrefslogtreecommitdiff
path: root/todo/print.ha
diff options
context:
space:
mode:
Diffstat (limited to 'todo/print.ha')
-rw-r--r--todo/print.ha5
1 files changed, 5 insertions, 0 deletions
diff --git a/todo/print.ha b/todo/print.ha
new file mode 100644
index 0000000..4106fd9
--- /dev/null
+++ b/todo/print.ha
@@ -0,0 +1,5 @@
+use fmt;
+
+export fn print(todo: str) void = {
+ fmt::printfln("* {}", todo)!;
+};