Skip to content

Instantly share code, notes, and snippets.

@mccanne
Created December 7, 2014 21:10
Show Gist options
  • Save mccanne/23b9b5e8fca59e596d66 to your computer and use it in GitHub Desktop.
Save mccanne/23b9b5e8fca59e596d66 to your computer and use it in GitHub Desktop.
Dice test

A simple juttle to test the dice_rolls subgraph

sub dice_rolls(n) {
function roll() {
return Math.ceil(6 * Math.random());
}
function toss_dice() {
return roll() + roll();
}
emitter -limit n -start 0 | put throw = toss_dice()
}
dice_rolls -n 10 | @table
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment