Comment on Hazel: A live functional programming environment featuring typed holesComments−imglorp1yInteresting syntax: all the "let" bindings end with "in", eg let comparison = (0 == 0, 0 < 1, 1 <= 1, 2 > 1, 1 >= 1) in Anyone know why "in" keyword?−arthurbrown1ythis is the syntax for variable binding in ocaml.Hazel appears to be written in ocaml and mentions being "ml-like" on the site−moomin1yThe bindings are only valid for the expression following in.Haskell does the same thing.
Comments
Interesting syntax: all the "let" bindings end with "in", eg
Anyone know why "in" keyword?this is the syntax for variable binding in ocaml.
Hazel appears to be written in ocaml and mentions being "ml-like" on the site
The bindings are only valid for the expression following in.
Haskell does the same thing.