修正病句

pull/89/head
Stephano George 2020-08-29 20:40:54 +08:00 committed by GitHub
parent aaa4d9ccf3
commit 1d44b39134
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
type Expr interface{}
```
我们的表达式语言浮点数符号(小数点);二元操作符+-\* 和/;一元操作符-x和+x调用pow(x,y)sin(x)和sqrt(x)的函数例如x和pi的变量当然也有括号和标准的优先级运算符。所有的值都是float64类型。这下面是一些表达式的例子
我们的表达式语言包括浮点数符号(小数点);二元操作符+-\* 和/;一元操作符-x和+x调用pow(x,y)sin(x)和sqrt(x)的函数例如x和pi的变量当然也有括号和标准的优先级运算符。所有的值都是float64类型。这下面是一些表达式的例子
```go
sqrt(A / pi)