mirror of
https://github.com/edg-l/edlang.git
synced 2024-11-09 09:38:24 +00:00
readme
This commit is contained in:
parent
3fbc7b15ab
commit
c4b21dfa57
|
@ -1,10 +1,10 @@
|
||||||
# edlang
|
# edlang
|
||||||
|
|
||||||
A toy language I'm making to learn LLVM and compilers.
|
An experimental statically-typed compiled programming language made with LLVM and Rust.
|
||||||
|
|
||||||
Syntax is subject to change any time right now. It has a rusty style for now.
|
Syntax is subject to change any time right now. It has a rusty style for now.
|
||||||
|
|
||||||
```
|
```rust
|
||||||
struct Hello {
|
struct Hello {
|
||||||
x: i32,
|
x: i32,
|
||||||
y: i32,
|
y: i32,
|
||||||
|
@ -31,3 +31,8 @@ fn main() -> i64 {
|
||||||
}
|
}
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Dependencies
|
||||||
|
|
||||||
|
- Rust
|
||||||
|
- LLVM 17
|
||||||
|
|
Loading…
Reference in a new issue