This website requires JavaScript.
Explore
Help
Sign In
raul
/
golang-exercises
Watch
1
Star
0
Fork
You've already forked golang-exercises
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
23a65fcb01
golang-exercises
/
count-to-100
/
main.go
12 lines
107 B
Go
Raw
Normal View
History
Unescape
Escape
startup
2024-01-16 18:34:48 +01:00
package
main
import
"fmt"
func
main
(
)
{
for
i
:=
1
;
i
<
101
;
i
++
{
fmt
.
Printf
(
"%v\n"
,
i
)
}
}
Testing
2024-01-17 22:04:20 +01:00
//Test