8 lines
111 B
Plaintext
8 lines
111 B
Plaintext
fun myfun (x:int;y:int) returns (z:int;t:int)
|
|
var x2 : int;
|
|
let
|
|
x2 = x*x ;
|
|
t = x2 + 3*x ;
|
|
z= t + y ;
|
|
tel
|