Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
XChy committed Aug 5, 2023
1 parent a9d8068 commit 04a988d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ bin/xsharp xxx.xe # execute the bytecode
- ##### module
- ##### match pattern

### Grammar
### Syntax

- #### Variable Declaration

Expand All @@ -84,9 +84,9 @@ i32 a = 2333;
i32 abs(i32 a)
{
if(a >= 0)
return a;
else
return -a;
return a
else
return -a;
}
```
Expand Down

0 comments on commit 04a988d

Please sign in to comment.