Skip to content

Instantly share code, notes, and snippets.

@elbrujohalcon
Created October 29, 2017 17:21
Show Gist options
  • Save elbrujohalcon/2756fa47a1e69f71dfa23f89ab3d1391 to your computer and use it in GitHub Desktop.
Save elbrujohalcon/2756fa47a1e69f71dfa23f89ab3d1391 to your computer and use it in GitHub Desktop.
-module(x).
-export([c/0, d/0, e/1]).
c() -> [x || id(nothing)].
d() -> [x || nothing].
e(X) -> [x || X].
id(X) -> X.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment