Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Oz 0.47 KB | None | 0 0
  1. local XYZ in
  2. X=10
  3. if X>=Y then Z=X else Z=Y end
  4. end
  5. The comparison X>=Y returns true or false, if it can decide which is the case.
  6. If Y is unbound, it cannot decide, strictly speaking.What does it do? Continuing
  7. with either true or false would be incorrect.Raising an error would be a drastic
  8. measure, since the program has done nothing wrong (it has done nothing right
  9. either).We decide that the program will simply stop its execution, without signaling
  10. any kind of error
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement