Guest User

Untitled

a guest
Jun 16th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
F# 0.39 KB | None | 0 0
  1. > type bT =
  2.     | Node of bT * int * bT
  3.     | Empty;;
  4.  
  5. type bT =
  6.   | Node of bT * int * bT
  7.   | Empty
  8.  
  9. > Node(
  10.     Node(Empty,2,Empty),1,Empty));;
  11.  
  12.       Node(Empty,2,Empty),1,Empty));;
  13.   --------------------------------^
  14.  
  15. stdin(5,33): error FS0010: Unexpected symbol ')' in interaction. Expected incomplete structured construct at or before this point, ';', ';;' or other token.
  16. >
Add Comment
Please, Sign In to add comment