15 lines
183 B
Go
15 lines
183 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
if len(os.Args) < 2 {
|
|
fmt.Println("Invalid arguments number")
|
|
os.Exit(-1)
|
|
}
|
|
|
|
fmt.Println("Your secret is: ", os.Args[1])
|
|
}
|