Created
March 25, 2011 11:47
-
-
Save chids/886744 to your computer and use it in GitHub Desktop.
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
-module(a). | |
-export([tgif/0]). | |
-define(MUSIC_ASSOCIATIONS, [{ellnestam, "Love Gun"}, {jockeholm, "Family Affair"}, {mahnve, "My name is (Slim Shady)"}]). | |
tgif() -> tgif(?MUSIC_ASSOCIATIONS). | |
tgif([{Person, Track}|Others]) -> | |
io:format("@~w plays '~s'~n", [Person, Track]), | |
tgif(Others); | |
tgif([]) -> "Hey! It's friday, have a beer!". |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment