Added to the README.
This commit is contained in:
parent
503888bcee
commit
18063364c3
11
README.md
11
README.md
|
@ -1 +1,12 @@
|
||||||
# ![SkyLang](.images/slang_logo_dark_transparent_not_motto.png)
|
# ![SkyLang](.images/slang_logo_dark_transparent_not_motto.png)
|
||||||
|
SkyLang is a programming language meant for AbleOS. Currently, ironically, it only works on Linux. It is written in Rust, and we are planning to self-host. Anyways, here's a code example:
|
||||||
|
|
||||||
|
``` skylang
|
||||||
|
let able = 100;
|
||||||
|
let os = 100;
|
||||||
|
fnaf adder(a, b) {
|
||||||
|
return a + b;
|
||||||
|
}
|
||||||
|
|
||||||
|
assert_eq(200, adder(able, os));
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue