aboutsummaryrefslogtreecommitdiff
path: root/todo/print.ha
diff options
context:
space:
mode:
authorAutumn2026-08-23 11:33:35 +0100
committerAutumn2026-08-23 11:33:35 +0100
commit6337a8d398a223345e2e22ede0911d5e6dcab019 (patch)
tree297121cbda8bf765d9d9cd64b1d31fd850882900 /todo/print.ha
parent47a3890c0055e04ffba2984f1870452cb1653435 (diff)
[bunnytask] added basic TODO.TXT reading
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)!;
+};