This website works better with JavaScript
Startseite
Erkunden
Hilfe
Anmelden
Home
/
codewars
Beobachten
2
Favorit hinzufügen
0
Fork
0
Dateien
Issues
0
Pull-Requests
0
Wiki
Branch:
master
Branches
Tags
master
codewars
/
books
/
go_head_first
/
misc
/
loop.go
loop.go
91 B
Permalink
Verlauf
Originalformat
1
2
3
4
5
6
7
8
9
package main
import "fmt"
func main() {
for x := 1; x <= 3; x++ {
fmt.Println(x)
}
}