Implemented assignments, working on job control

This commit is contained in:
2025-03-15 16:56:53 -04:00
parent 149e0ef2c8
commit e62586fe3d
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"
];