Guest User

Untitled

a guest
Jan 16th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. let
  2. var myAge = currentYear() - 1996
  3. function check(age: int) =
  4. if age < 21
  5. then print("Sorry, you are not permitted to enter.")
  6. else print("Welcome!")
  7. in
  8. check(myAge)
  9. end
Add Comment
Please, Sign In to add comment