10 lines
177 B
Text
10 lines
177 B
Text
|
|
let sum = (* sum is bound to 181 *)
|
||
|
|
let a = 31
|
||
|
|
and b = 150 in
|
||
|
|
(a + b)
|
||
|
|
|
||
|
|
let sum () = (* sum is a function which returns 181 *)
|
||
|
|
let a = 31
|
||
|
|
and b = 150 in
|
||
|
|
(a + b)
|