Test commit

This commit is contained in:
Apache 2024-06-06 23:50:20 -05:00
parent 2852ee9c1f
commit 71f8fbd748
Signed by: apache
GPG key ID: 6B10F3EAF14F4C77

View file

@ -1,3 +1,4 @@
fn main() { fn main() {
println!("Hello, world!"); let source = std::fs::read_to_string("src/test.lisp").unwrap();
println!("{}", source);
} }