Implemented assignments, working on job control

This commit is contained in:
2025-03-15 16:56:53 -04:00
parent 97b4b1835d
commit 2acf70ef96
25 changed files with 1390 additions and 280 deletions

5
src/builtin/mod.rs Normal file
View File

@@ -0,0 +1,5 @@
pub mod echo;
pub const BUILTINS: [&str;1] = [
"echo"
];