Created
November 13, 2013 18:27
-
-
Save psyomn/7453884 to your computer and use it in GitHub Desktop.
Erlang printing stuff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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