chroma/lexers/testdata/erlang.actual

16 lines
263 B
Text
Raw Permalink Normal View History

2025-03-22 20:46:00 +13:00
-module(repl).
-export([run/0]).
run() ->
read_eval_process().
read_eval_process() ->
Line = io:get_line("> "),
Out = process_line(Line),
io:format("< ~s~n~n", [Out]),
read_eval_process().
process_line(Line) ->
string:uppercase(Line).