Data update
This commit is contained in:
parent
ed705008a8
commit
0df55f9f24
2196 changed files with 32999 additions and 3075 deletions
10
Task/Loops-For/Bait/loops-for.bait
Normal file
10
Task/Loops-For/Bait/loops-for.bait
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
const ROWS := 5
|
||||
|
||||
fun main() {
|
||||
for i := 1; i <= ROWS; i += 1 {
|
||||
for j := 1; j <= i; j += 1 {
|
||||
print('*')
|
||||
}
|
||||
println('')
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue