Files
kyn/test.kyn

18 lines
277 B
Plaintext
Raw Normal View History

2025-10-07 10:15:59 +11:00
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
}
}