18 lines
277 B
Plaintext
18 lines
277 B
Plaintext
|
|
fun testFn in {
|
||
|
|
println "Hi!"
|
||
|
|
if compare 1 == 1 {
|
||
|
|
println "1 == 1"
|
||
|
|
|
||
|
|
# This won't work because this is indented
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
fun testFn in {
|
||
|
|
println "Hi!"
|
||
|
|
if compare 1 == 1 {
|
||
|
|
println "1 == 1"
|
||
|
|
|
||
|
|
# This works now that the indentation is removed
|
||
|
|
}
|
||
|
|
}
|