docs and build shit
Build and Bundle Gleam App / format (push) Successful in 18s

This commit is contained in:
2026-08-31 19:01:42 +02:00
parent 0f0939550c
commit 3a6f106c80
6 changed files with 161 additions and 28 deletions
+9
View File
@@ -0,0 +1,9 @@
-module(luma_stdin).
-export([read_line/0]).
read_line() ->
case io:get_line("") of
eof -> <<>>;
Line -> unicode:characters_to_binary(Line)
end.