[wklieber@unix35 ~/15212]$ fs setacl . `whoami` all -clear [wklieber@unix35 ~/15212]$ fs listacl . Access list for . is Normal rights: wklieber rlidwka
[wklieber@unix35 ~]$ rlwrap sml Standard ML of New Jersey v110.69 [built: Wed Apr 29 12:25:34 2009] - 2 + 2; val it = 4 : intThe SML interpreter automatically introduces a new variable named "it" that contains the value of the last evaluated input line. "val it = 4 : int" means that the value of the variable it is 4 and its type is int.
- fun foo (x, y) = x+y; val foo = fn : int * int -> int - foo (2, 3); val it = 5 : int - val bar = (2, 3); val bar = (2,3) : int * int - foo bar; val it = 5 : int