Skip to content

Instantly share code, notes, and snippets.

@tangnotes
Created May 5, 2016 08:35
Show Gist options
  • Save tangnotes/51f1d28cb0129ff45427c5838a5d2627 to your computer and use it in GitHub Desktop.
Save tangnotes/51f1d28cb0129ff45427c5838a5d2627 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
var i uint64 = 10
for ; i >= 0; i-- {
fmt.Printf("> %d\n", i)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment