calculator.go 139 B

1234567891011121314151617
  1. package main
  2. import (
  3. "fmt"
  4. "strconv"
  5. "errors"
  6. )
  7. func calculate(str string) (float64, error) {
  8. }
  9. func nextInt()
  10. func main() {
  11. }