3 lines
133 B
Rexx
3 lines
133 B
Rexx
/*REXX program that demonstrates what happens when dividing by zero. */
|
|
y=7
|
|
say 44 / (7-y) /* divide by some strange thingy.*/
|