Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
AveryQi115 authored Jun 25, 2021
1 parent a03cf68 commit 5abeb6f
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

- int/void func(parameter)

- int[]

## 支持的语句

- if语句
Expand Down Expand Up @@ -42,4 +44,15 @@
```c
int demo(int a);
```


- 支持数组声明
```c
int[] arr;
```

- 支持数组元素赋值.
```c
arr[0] = 4;
```

- 支持多维数组

0 comments on commit 5abeb6f

Please sign in to comment.