Skip to content

Commit

Permalink
enhance readme
Browse files Browse the repository at this point in the history
  • Loading branch information
TTENSHII authored Dec 19, 2023
1 parent 29060a1 commit 3a6fcba
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Leviator

The opinionated programing language
<img src="https://github.com/X-R-G-B/Leviator/assets/87119012/acc77ef3-b39f-4c40-b882-d7e0b0fdefb6" alt="logo" width="150" align="left">
<h1>🐲 Leviator</h1>
<p>The opinionated programing language</p>
<br>

## Documentation

Expand All @@ -12,21 +13,21 @@ The opinionated programing language

-- **Variables Declaration**

```python
```hs
@Int a = 1;
@String b = "hello";
```

-- **Variables Assignment**

```c
```hs
a = 1;
b = "hello";
```

- **Built-in Types**

```
```hs
@Bool a = True;
@Bool b = False;
@Int c = 1;
Expand Down Expand Up @@ -145,7 +146,7 @@ foreach (a in lst)
if (a == 2)
{
break;
}
};
};
```
Expand Down Expand Up @@ -173,6 +174,8 @@ a + b
a - b
a * b
a / b
a == b
a != b
```

- **Structs**
Expand Down

0 comments on commit 3a6fcba

Please sign in to comment.