Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- % Erlang solution to codeabbey challenge 30
- -module(main).
- -export([main/1]).
- main([_]) ->
- S = "on fare supper off shelf jeopardy about cactus",
- T = lists:reverse(S),
- io:format(T),
- init:stop() .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement