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,16 @@
package main
import (
"fmt"
"os"
"strconv"
)
func main() {
// lesson: multi-return funcs, %v, and _
a, _ := strconv.Atoi(os.Args[1])
b, _ := strconv.Atoi(os.Args[2])
fmt.Printf("%v + %v = %v\n", a, b, a+b)
}