diff options
Diffstat (limited to 'calc.go')
| -rw-r--r-- | calc.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5,11 +5,11 @@ import ( "strings" ) -type AngleMode int +type AngleMode bool const ( - modeDeg = iota - modeRad + modeDeg = false + modeRad = true ) type Calculator struct { |