Skip to content

Instantly share code, notes, and snippets.

@jonathan-fielding
Last active January 2, 2021 16:37
Show Gist options
  • Save jonathan-fielding/33f1c88bfff56d8510c35df52fde33f4 to your computer and use it in GitHub Desktop.
Save jonathan-fielding/33f1c88bfff56d8510c35df52fde33f4 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"os"
)
func main() {
var hello = "hello"
var name = "world"
if len(os.Args[1:]) == 1 {
name = os.Args[1]
}
fmt.Println(hello + " " + name)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment