Created
May 5, 2016 08:35
-
-
Save tangnotes/51f1d28cb0129ff45427c5838a5d2627 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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