Created
December 12, 2017 13:13
-
-
Save tocttou/69d0ecd1f1cd8181d11c3a3d3ea000c4 to your computer and use it in GitHub Desktop.
This file contains 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
package main | |
import utils.oldFor | |
fun main(args: Array<String>) { | |
var n = 12 | |
oldFor({ 0 }, { it < n }, { it + 1 }) { | |
println(it) | |
n /= 2 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment