Created
September 8, 2015 17:50
-
-
Save IgnoredAmbience/a6a31a1ef6f2be251a2c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ocamlc -version | |
4.02.2 | |
$ ocamlc -I . stack.ml | |
File "stack.ml", line 2, characters 24-26: | |
Error: Syntax error |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ocamlc -version | |
4.02.1 | |
$ ocamlc -I . stack.ml | |
$ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type stack = | |
| C [@f value, stack] of int * stack | |
| N [@f] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment