4 lines
66 B
Text
4 lines
66 B
Text
def mult(expr a, b) = (a * b) enddef;
|
|
t := mult(2,3);
|
|
show t;
|
|
end
|
def mult(expr a, b) = (a * b) enddef;
|
|
t := mult(2,3);
|
|
show t;
|
|
end
|