Skip to content

Commit

Permalink
Fix code samples
Browse files Browse the repository at this point in the history
  • Loading branch information
xtfer committed Sep 15, 2024
1 parent acc80f6 commit 3806842
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 @@ -100,7 +100,7 @@ Run the executable:

- **Function Declaration**:

```fluent
```
func main():
# Function body
```
Expand All @@ -111,7 +111,7 @@ Run the executable:

- **If Statement**:

```fluent
```
if condition:
# Then block
else:
Expand All @@ -120,7 +120,7 @@ Run the executable:

- **While Loop**:

```fluent
```
while condition:
# Loop body
```
Expand All @@ -136,7 +136,7 @@ Run the executable:

### Sample Fluent Program (`test.flu`)

```fluent
```
func main():
let x = 10
var y = 20
Expand Down

0 comments on commit 3806842

Please sign in to comment.