Skip to content

Instantly share code, notes, and snippets.

@clone1018
Last active December 27, 2015 14:19
Show Gist options
  • Save clone1018/7340011 to your computer and use it in GitHub Desktop.
Save clone1018/7340011 to your computer and use it in GitHub Desktop.
FizzBuzz in Dimond
for {$i=1; $i <= 100; $i++} {
if {$i % 3 == 0} {
if {$i % 5 == 0} {
print "FizzBuzz\r\n"
} else {
print "Fizz\r\n"
}
} elseif {$i % 5 == 0} {
print "Buzz\r\n"
} else {
print $i
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment