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,30 @@
package main
import (
"fmt"
"os"
"strconv"
)
func main() {
// lesson: error handling + short decl. assignment
if len(os.Args) != 3 {
fmt.Println("Usage: calc <number1> <number2>")
return
}
a, err := strconv.ParseFloat(os.Args[1], 64)
if err != nil {
fmt.Println("Please provide a valid number")
return
}
b, err := strconv.ParseFloat(os.Args[2], 64)
if err != nil {
fmt.Println("Please provide a valid number")
return
}
fmt.Printf("%v + %v = %v\n", a, b, a+b)
}