You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an attempt to build a general-purpose interpreted programming language (later with a focus on back-end web programming) that attempts to allow the programmer to choose their own guarantees for things like type safety.
8
+
9
+
This project is written in Rust. If you're unfamiliar with Rust, you should take a look at the [Rust docs](https://www.rust-lang.org/en-US/documentation.html).
6
10
7
11
## Usage
8
12
9
-
`balloon` is currently not available on crates.io. You will need to built it yourself.
13
+
Balloon is currently not available on crates.io. You will need to build it yourself using Cargo.
10
14
11
15
```
12
16
usage: balloon [MODE] FILE
@@ -17,6 +21,8 @@ where MODE is one of:
17
21
--parse only parse the file, don't run it
18
22
```
19
23
24
+
(There is also an (even more) experimental LLVM backend that is not documented here.)
25
+
20
26
## Code examples
21
27
22
-
Examples of valid code can be found by looking at tests in [src/interpreter_test.rs](src/interpreter_test.rs).
28
+
Examples of valid code can be found by looking at tests in the [tests/run-pass](tests/run-pass) directory.
0 commit comments