fix or
This commit is contained in:
parent
b3dac750c0
commit
3910fc3413
@ -19,13 +19,13 @@ sudo apt install gcc-12-riscv64-linux-gnu qemu-user qemu-system-misc
|
||||
编译运行程序,src 为本语言源代码。可以编译 demo 文件夹下的实例。
|
||||
|
||||
```sh
|
||||
$ ./run.sh <src>
|
||||
$ sh run.sh <src>
|
||||
```
|
||||
|
||||
自举编译器,输出的文件位于 build 文件夹中。
|
||||
|
||||
```sh
|
||||
$ ./boot.sh
|
||||
$ sh boot.sh
|
||||
```
|
||||
|
||||
输出六个文件:
|
||||
@ -84,9 +84,9 @@ $ ./boot.sh
|
||||
| `==` `!=` | 相等比较 | 从左到右 |
|
||||
| `&` | 按位与 | 从左到右 |
|
||||
| `^` | 按位异或 | 从左到右 |
|
||||
| `|` | 按位或 | 从左到右 |
|
||||
| <code>|</code> | 按位或 | 从左到右 |
|
||||
| `&&` | 逻辑与 | 从左到右 |
|
||||
| `||` | 逻辑或 | 从左到右 |
|
||||
| <code>||</code> | 逻辑或 | 从左到右 |
|
||||
| `=` | 赋值 | 从右到左 |
|
||||
|
||||
- 加减号支持整数之间,指针与整数,指针之间的运算。
|
||||
|
Loading…
Reference in New Issue
Block a user