A language designed for the enjoyment of programming.
- No strict type checker
- No C-like pointer arithmetic
- No function-like macros
- No variable shadowing
- No
break
,continue
stmt. Usegoto
- No libc dependency
- No hidden control flow
- No hidden memory allocations
- Allows syntax like
13 <= age < 20
- Variable length args
func(...)
can be accessed with built-in variablesargc i64
andargv *i64
- All values are extended to 64-bit when accessed
- The compiler is written in itself
- Default args don't have to be on the end (WIP)
Important
Supports x86-64 Linux only
$ git clone [email protected]:v420v/ibu.git
$ cd ibu
$ make init
$ git clone [email protected]:v420v/ibu.git
$ cd ibu
$ make up
$ make ibu
$ make init
Command | Execution |
---|---|
make up |
docker compose up -d |
make ibu |
docker compose exec ibulang bash |
make down |
docker compose down |
$ ./ibuc <filename>.ibu
File | Content |
---|---|
src/ibu.ibu |
Entry point |
src/tokenizer/tokenizer.ibu |
Lexical analyzer |
src/preprocessor/preprocessor.ibu |
Preprocessor |
src/parser/parser.ibu |
Parser |
src/codegen/codegen.ibu |
Assembly code generator |
src/linux-syscall/linux-syscall.ibu |
Linux system call |
src/runtime.s |
Syscall function in assembly |
src/util/util.ibu |
Other |
contribution is welcome!
This project is licensed under the MIT License - see the LICENSE file for details.