add: calculator example to x-tba

This commit is contained in:
Inanc Gumus
2019-05-13 18:22:49 +03:00
parent 2169fa0f05
commit 3a33312bdc
12 changed files with 457 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
package main
import (
"fmt"
"os"
"strconv"
)
func main() {
// lesson: if
if len(os.Args) != 3 {
fmt.Println("Usage: calc <number1> <number2>")
return
}
a, _ := strconv.Atoi(os.Args[1])
b, _ := strconv.Atoi(os.Args[2])
fmt.Printf("%v + %v = %v\n", a, b, a+b)
}