Skip to content

Instantly share code, notes, and snippets.

@bneijt
Created December 6, 2010 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bneijt/730327 to your computer and use it in GitHub Desktop.
Save bneijt/730327 to your computer and use it in GitHub Desktop.
-module(something).
-export([a/0, b/0, c/0]).
a() -> erlang:display("a").
b() -> a.
c() -> fun a/0.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment