mirror of
https://github.com/github/semantic.git
synced 2024-11-29 11:02:26 +03:00
10 lines
119 B
Go
10 lines
119 B
Go
|
package main
|
||
|
|
||
|
func merle() {
|
||
|
for ii := 0; ii < 10; ii+=1 {
|
||
|
for jj := 0; jj < 10; jj+=1 {
|
||
|
print(ii + jj)
|
||
|
}
|
||
|
}
|
||
|
}
|