Guest User

Untitled

a guest
Jul 2nd, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. >>> let a = 2
  2. >>> case a:
  3. ... of 1: echo "one"
  4. stdin(2, 4) Error: not all cases are covered
  5. >>> case a:
  6. ... of 1: echo "one"
  7. ... of 2: echo "two"
  8. ... default: "def"
  9. ...
  10. stdin(3, 4) Error: not all cases are covered
  11. stdin(6, 9) Error: invalid indentation
  12. stdin(6, 9) Error: undeclared identifier: 'default'
  13. stdin(6, 9) Error: undeclared identifier: 'default'
Advertisement
Add Comment
Please, Sign In to add comment