Skip to content

Instantly share code, notes, and snippets.

@ab5tract
Last active October 5, 2015 21:28
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 ab5tract/18b95160763bf901c74e to your computer and use it in GitHub Desktop.
Save ab5tract/18b95160763bf901c74e to your computer and use it in GitHub Desktop.
module Chance {
my @faces = '⚀', '⚁', '⚂', '⚃', '⚄', '⚅';
sub term:<¿>() is export(:golf) { @faces.roll }
sub chance() is export { ¿ }
}
import Chance;
say chance;
import Chance :golf;
say ¿ xx 42;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment