You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SwiftML> let val a = 1 in a end
val it = 1 : int
SwiftML> 2
val it = 2 : int
SwiftML> when true then 1 else 2 end
val it = 1 : int
SwiftML> when false then 1 else 2 end
val it = 2 : int
SwiftML> :q
Bye!