21 lines
198 B
Plaintext
21 lines
198 B
Plaintext
|
|
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
|