You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
198 B

define void stuff(x) {
print "x: ", x, "\n"
}
define void(x) {
return x
}
stuff(0)
stuff(1)
stuff(2.2839)
stuff(-9.9289389)
void(0)
void(1)
void(2.9823)
void(-3.5982)
void = .198389
void + 10