diff options
| author | Jonas Maier <> | 2026-03-05 10:18:34 +0100 |
|---|---|---|
| committer | Jonas Maier <> | 2026-03-05 10:18:34 +0100 |
| commit | d62649f0aed0daca805d716819db32d5e9263865 (patch) | |
| tree | 543723bf4dc76f98d036790a91716ee49e61cc38 | |
| parent | a3432a7a2ffbceea783fdf20231a22ce0ad2302c (diff) | |
| download | pish-d62649f0aed0daca805d716819db32d5e9263865.tar.gz | |
reserve builtins
| -rw-r--r-- | src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index a9f64e9..9d8f191 100644 --- a/src/main.rs +++ b/src/main.rs @@ -72,6 +72,9 @@ fn run_command(raw: &ScopedRawMode, line: Vec<u8>) { return; } + b"from" => todo!("read from file"), + b"to" | b"into" => todo!("write into file"), + b"append" => todo!("append to file"), _ => (), } } |
