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