Responses for exercises in Exercism.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
208 B

-module(two_fer).
-import(string, [concat/2]).
-export([two_fer/0, two_fer/1]).
two_fer() ->
"One for you, one for me.".
two_fer(Name) ->
concat(
concat("One for ", Name),
", one for me."
).