hi, to learn erlang i am implementing a simple rogue-like game. my
problem is that i cant seem to print escape. i have tried
io:fwrite("~c[34m", [27]).
io:format("~c[34m", [27]).
io:put_chars([27,91,51,52,109]).
all three of them print ^[[34m instead of causing the foreground color
to become blue. how can i fix this?
sincerly,
chris moline