Guest User

Untitled

a guest
Jun 21st, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. type t = { v1 : int, v2 : int } in
  2. let r : t := t { v1 = 44, v2 = 22 } in
  3. let i := r.v1
  4. and a := 5 in
  5. let g(x : int, w : int) : int =
  6. let f(y : int) : int = y * i in
  7. let h(z : int) : int = (w + f(z)) / a in
  8. f(h(x)) - r.v2
  9. in
  10. g(i,a)
Add Comment
Please, Sign In to add comment