Skip to content

Commit

Permalink
fixed spelling errors
Browse files Browse the repository at this point in the history
  • Loading branch information
AnonymousAAArdvark committed Feb 18, 2023
1 parent aff6a41 commit 4e508a1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Block comments start with /* and end with */. They can span multiple lines:
Like many other programming languages Qi has some reserved keywords that assume a very specific meaning in the context of the source code:
```c
打断 继续 类 切换 案例 预设 否则 功能 而 对于 如果 空 返回 超 真
假 这 变量 和 或 等 不等 打等 小等
假 这 变量 和 或 等 不等 大等 小等
```

## Identifiers
Expand Down
4 changes: 2 additions & 2 deletions docs/zh-cn/syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
与许多其他编程语言一样,气有一些保留关键字,它们在源代码的上下文中具有非常特定的含义:
```c
打断 继续 类 切换 案例 预设 否则 功能 而 对于 如果 空 返回 超 真
假 这 变量 和 或 等 不等 打等 小等
假 这 变量 和 或 等 不等 大等 小等
```

## 身份标识
Expand All @@ -39,7 +39,7 @@ one二3
> 支持所有汉字和标点符号。
## 分号
分号(;)在齐语中是有意义的。它们用于分隔语句:
分号(;)在气语中是有意义的。它们用于分隔语句:
```c
// 两种说法:
系统。打印行("你好");系统。打印行("再见"
Expand Down
11 changes: 4 additions & 7 deletions test/scratch.qi
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,9 @@

系统。打印行(数字。余弦(2 * 数字。圆周率)) // 0


类 树 「
打印()「
系统。打印行("我是一个树!")
功能 斐波(数字)「
如果(数字 小 2)返回 数字
返回 斐波(数字 - 2) + 斐波(数字 - 1)

变量 式 = 树()
系统。打印行(式。打印())
系统。打印行(斐波(20))

0 comments on commit 4e508a1

Please sign in to comment.