diff options
-rw-r--r-- | README.org | 1 | ||||
-rw-r--r-- | rust/help.rs | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/README.org b/README.org index 771d8db..380f18f 100644 --- a/README.org +++ b/README.org @@ -14,6 +14,7 @@ Often found as a bash built-in command, but this one does tell you to RTFM. It h + OCaml ~cd ocaml && ocaml help.ml || cd ocaml && ocamlc -o help help.ml~ + Python ~cd python && python3 help.py~ + C ~cd c && cc -o help help.c~ ++ Rust ~cd rust && rustc help.rs~ By the way, this is just an example on how a useless program like this can be implemented in many ways possible. diff --git a/rust/help.rs b/rust/help.rs new file mode 100644 index 0000000..26a439b --- /dev/null +++ b/rust/help.rs @@ -0,0 +1,4 @@ +fn main() +{ + println!("would you mind reading the fucking manual pages? (now memory safe!)") +} |