Skip to content

Instantly share code, notes, and snippets.

@edmcman
Last active December 15, 2015 03:09
Show Gist options
  • Save edmcman/5192454 to your computer and use it in GitHub Desktop.
Save edmcman/5192454 to your computer and use it in GitHub Desktop.
Coding styles
match x with
| 1 ->
(match y with
| 1 -> Foo
| 2 -> Bar)
| 2 ->
match x with
| 1 ->
(match y with
| 1 -> Foo
| 2 -> Bar
)
| 2 ->
match x with
| 1 -> (match y with
| 1 -> Foo
| 2 -> Bar)
| 2 ->
match x with
| 1 -> (
match y with
| 1 -> Foo
| 2 -> Bar
)
| 2 ->
match x with
| 1 ->
(
match y with
| 1 -> Foo
| 2 -> Bar
)
| 2 ->
match x with
| 1 ->
begin
match y with
| 1 -> Foo
| 2 -> Bar
end
| 2 ->
match x with
| 1 ->
begin match y with
| 1 -> Foo
| 2 -> Bar
end
| 2 ->
match x with
| 1 -> begin
match y with
| 1 -> Foo
| 2 -> Bar
end
| 2 ->
match x with
| 1 -> (
match y with
| 1 -> Foo
| 2 -> Bar
)
| 2 ->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment