Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package main
- import (
- "fmt"
- )
- func main() {
- x := 3
- if x > 10 {
- fmt.Println("x is larger than 10")
- } else {
- fmt.Println("x is not larger than 10")
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement