let
function f( x : string ) =
print( x )
in
f( “hello” )
end
let
var x := “hello”
in
print( x )
end