Advertisement
Spocoman

01. Clock

Sep 23rd, 2024
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.17 KB | None | 0 0
  1. package main
  2.  
  3. import "fmt"
  4.  
  5. func main() {
  6.     for h := 0; h < 24; h++ {
  7.         for m := 0; m < 60; m++ {
  8.             fmt.Printf("%d:%d\n", h, m)
  9.         }
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement