Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion course-definition.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description_md: |-
Your shell will run a REPL, parse commands, spawn processes, and more.
short_description_md: |-
Learn about parsing shell commands, executing programs and more
concept_slugs: ["what-is-a-shell-prompt"]
concept_slugs: ["what-is-a-shell-prompt", "what-are-builtin-commands"]

completion_percentage: 20

Expand Down Expand Up @@ -177,18 +177,30 @@ stages:
In this stage, you'll implement a REPL (Read-Eval-Print Loop) for your shell.

- slug: "pn5"
concept_slugs:
[
"what-are-builtin-commands",
]
name: "Implement exit"
difficulty: easy
marketing_md: |-
In this stage, you'll implement the `exit` builtin command.

- slug: "iz3"
concept_slugs:
[
"what-are-builtin-commands",
]
name: "Implement echo"
difficulty: medium
marketing_md: |-
In this stage, you'll implement the `echo` builtin command.

- slug: "ez5"
concept_slugs:
[
"what-are-builtin-commands",
]
name: "Implement type"
difficulty: medium
marketing_md: |-
Expand Down
Loading