Guest User

Untitled

a guest
Nov 21st, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. fun last [] = nil
  2. | last(head::nil) = [head]
  3. | last(head::list) = last(list)
  4.  
  5. last(head::nil)=head
  6.  
  7. operator domain: 'Z list list
  8. operand: real list
Add Comment
Please, Sign In to add comment