mirror of
https://github.com/Noratrieb/Hunterlang.git
synced 2026-01-14 12:35:01 +01:00
50 lines
1.1 KiB
Markdown
50 lines
1.1 KiB
Markdown
# Hunterlang
|
|
A hunter x hunter themed interpreted esoteric programming language.
|
|
|
|
The first version of the lexer is done, the parser is still in work.
|
|
Some example code:
|
|
```
|
|
#Add two numbers
|
|
Leorio does say "Number 1"
|
|
killua0 hunts Leorio does listen
|
|
Leorio does say "Number 2"
|
|
killua2 hunts Leorio does listen
|
|
killua3 hunts killua0 + killua1
|
|
Leorio does say killua3
|
|
```
|
|
|
|
|
|
```
|
|
#Output the smaller number or both if they are equal
|
|
Leorio does say "Number 1"
|
|
killua0 hunts Leorio does listen
|
|
Leorio does say "Number 2"
|
|
killua2 hunts Leorio does listen
|
|
Gon wants killua0 > killua1 {
|
|
Leorio does say killua1
|
|
} wants killua1 > killua0 {
|
|
Leorio does say killua0
|
|
} got {
|
|
Leorio does say killua0 + " " + killua1
|
|
}
|
|
```
|
|
|
|
|
|
```
|
|
#Read in 2 numbers using a function and output their sum with a function
|
|
Read2 Zoldyck gets 0 does {
|
|
Leorio does say "Number 1"
|
|
killua0 hunts Leorio does listen
|
|
Leorio does say "Number 2"
|
|
killua2 hunts Leorio does listen
|
|
}
|
|
|
|
Add Zoldyck gets 2 gives {
|
|
illumi0 + illumi1
|
|
}
|
|
|
|
Read2
|
|
Leorio does say add killua0 killua1
|
|
```
|
|
|
|
sadly, Github syntax highlighting is not available yet
|