Skip to content

Instantly share code, notes, and snippets.

@psyomn
Created November 13, 2013 18:27
Show Gist options
  • Select an option

  • Save psyomn/7453884 to your computer and use it in GitHub Desktop.

Select an option

Save psyomn/7453884 to your computer and use it in GitHub Desktop.
Erlang printing stuff
Erlang R16B02 (erts-5.10.3) [source] [64-bit] [smp:2:2] [async-threads:10] [hipe] [kernel-poll:false]
Eshell V5.10.3 (abort with ^G)
1> io:format("Get out of here stalker~n").
Get out of here stalker
ok
.> io:format("Get out of here stalker~p~n",[[1,2,3,4,5]]).
Get out of here stalker[1,2,3,4,5]
ok
3> q().
ok
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment