1: -module(play).
2: -export([headstrip/1]).
3:
4: headstrip([]) -> ok;
5: headstrip([HeadRest]) ->
6: io:format("~w~n",[Head]),
7: headstrip(Rest).
Post a Comment
No comments:
Post a Comment