Files
pork/examples/count.pork

10 lines
105 B
Plaintext
Raw Normal View History

export let count = 5
2023-09-11 04:57:13 -04:00
export func main() {
var x = 1
2023-09-11 04:57:13 -04:00
while x <= count {
println(x)
2023-09-11 04:57:13 -04:00
x++
}
}