diff --git a/processing.pde b/processing.pde new file mode 100644 index 0000000..69e8a40 --- /dev/null +++ b/processing.pde @@ -0,0 +1,13 @@ +void setup() { + for (int i=1; i<=100; i++) { + if (i % 15 == 0) { + println("FizzBuzz"); + } else if (i % 5 == 0) { + println("Buzz"); + } else if (i % 3 == 0) { + println("Fizz"); + } else { + println(i); + } + } +}