Update libtest and make examples/cli.rs

This commit is contained in:
Sofia 2025-07-14 17:24:44 +03:00
parent bc1cc99bcc
commit e15f77d9de
10 changed files with 24 additions and 39 deletions

View File

@ -57,12 +57,12 @@ and not as representative of my skills as a programmer today as this one.
## What is currently being tested?
Currently when testing the compiler I run `./libtest.sh fibonacci` or
`./libtest.sh arithmetic`.
Currently when testing the compiler I run `./libtest.sh reid_src/{file}.reid`,
where the `{file}` is one of the various examples I've written to help me test
features of the compiler.
What `./libtest.sh $1` does, is it compiles and runs the rust example found with
name `$1`, which may exist in any of the two projects. The two mentioned above
are in `reid/examples`.
What `./libtest.sh $1` does, is it compiles and runs the rust example found at
path `$1`. Some pre-existing examples can be found in [`reid_src`](./reid_src)
All examples currently end up producing a `hello.o` and `hello.asm` file to the
root directory, which is then linked with `ldd` to produce a `main`, which is

View File

@ -6,7 +6,7 @@
# Do note this file is extremely simply for my own personal convenience
export .env
cargo run --example $1 && \
cargo run --example cli $1 && \
# clang hello.o -o main && \
ld -dynamic-linker /lib64/ld-linux-x86-64.so.2 \
-o main /usr/lib/crt1.o hello.o -lc && \

View File

@ -1,11 +0,0 @@
use reid::compile;
pub static ARRAY: &str = include_str!("./reid/array.reid");
fn main() {
let text = match compile(ARRAY) {
Ok(t) => t,
Err(e) => panic!("{}", e),
};
println!("{}", text);
}

18
reid/examples/cli.rs Normal file
View File

@ -0,0 +1,18 @@
use std::{env, fs};
use reid::compile;
fn main() -> Result<(), std::io::Error> {
let args: Vec<String> = env::args().collect();
if let Some(filename) = args.get(1) {
let text = fs::read_to_string(filename)?;
let output = match compile(&text) {
Ok(t) => t,
Err(e) => panic!("{}", e),
};
println!("{}", output);
} else {
println!("Please input compiled file path!")
}
Ok(())
}

View File

@ -1,11 +0,0 @@
use reid::compile;
pub static FIBONACCI: &str = include_str!("./reid/fibonacci.reid");
fn main() {
let text = match compile(FIBONACCI) {
Ok(t) => t,
Err(e) => panic!("{}", e),
};
println!("{}", text);
}

View File

@ -1,11 +0,0 @@
use reid::compile;
pub static MUTABLE: &str = include_str!("./reid/mutable.reid");
fn main() {
let text = match compile(MUTABLE) {
Ok(t) => t,
Err(e) => panic!("{}", e),
};
println!("{}", text);
}