Created
April 30, 2014 13:14
-
-
Save goswinr/89b48e10e298b13c5c55 to your computer and use it in GitHub Desktop.
if else indentation
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
let x = false | |
// The indentation of the else clause seems wrong. | |
// could there be a compiler warning for this ? | |
if x then | |
printfn "if ?" | |
else // bad indentiation | |
printfn "else ?" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment