Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- let pick_color x = match x with
- | ((x mod 5), 0) -> green
- | ((x mod 4), 0) -> purple
- | (x mod 3, 0) -> blue
- | (x mod 2, 0) -> yellow
- | (x mod 1, 0) -> red
- ;;
- # All lines beginning with '|' are marked with "Syntax error inside `let'" by merlin
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement