You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
254 B
Plaintext
22 lines
254 B
Plaintext
2 years ago
|
/*struct something {
|
||
|
i64 i
|
||
|
Array<i64> data
|
||
|
|
||
|
private i64 total
|
||
|
}*/
|
||
|
|
||
|
use std.string
|
||
|
|
||
|
function main(args: Array<String>) {
|
||
|
const cars = 100
|
||
|
|
||
|
for x in 0x01..cars {
|
||
|
print("{} cars are driving around the block", cars,)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|