Advertisement
Spocoman

01. Numbers from 1 to 100

Sep 19th, 2024
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.10 KB | None | 0 0
  1. package main
  2.  
  3. import "fmt"
  4.  
  5. func main() {
  6.  
  7.     for i := 1; i < 101; i++ {
  8.         fmt.Println(i)
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement