seed: curriculum content

This commit is contained in:
2026-05-07 14:32:44 +00:00
parent 9258534803
commit ec76f4f56b
100 changed files with 2846 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/bash
# The Maker — build a cargo bay.
#
# When this script runs, a stale file `cargo-old.txt` is in your
# working directory. Your script must:
#
# 1. Create directories: cargo/food, cargo/water, cargo/tools
# 2. Create an empty file `manifest.txt` in each of those three rooms
# 3. Remove cargo-old.txt
#
# Tools: mkdir (use -p for nested), touch, rm
# Your code here.