Skip to content

Instantly share code, notes, and snippets.

@bdw

bdw/foo.nqp Secret

Created August 4, 2014 15:19
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 bdw/44faa4ab88bb14678d64 to your computer and use it in GitHub Desktop.
Save bdw/44faa4ab88bb14678d64 to your computer and use it in GitHub Desktop.
y u no work
sub quam() {
my num $i := 0.5;
while $i < 100.0 {
$i := $i * 1.1;
nqp::say("Value of \$i is $i");
}
}
my int $i := 0;
while $i < 100 {
quam();
$i := $i + 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment