Files
luma--markdown/src/luma_stdin.erl
T
deck 3a6f106c80
Build and Bundle Gleam App / format (push) Successful in 18s
docs and build shit
2026-08-31 19:01:42 +02:00

10 lines
171 B
Erlang

-module(luma_stdin).
-export([read_line/0]).
read_line() ->
case io:get_line("") of
eof -> <<>>;
Line -> unicode:characters_to_binary(Line)
end.