Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
6
Task/FizzBuzz/Ring/fizzbuzz.ring
Normal file
6
Task/FizzBuzz/Ring/fizzbuzz.ring
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
for n = 1 to 100
|
||||
if n % 15 = 0 see "" + n + " = " + "FizzBuzz"+ nl
|
||||
but n % 5 = 0 see "" + n + " = " + "Buzz" + nl
|
||||
but n % 3 = 0 see "" + n + " = " + "Fizz" + nl
|
||||
else see "" + n + " = " + n + nl ok
|
||||
next
|
||||
Loading…
Add table
Add a link
Reference in a new issue