Load and run an AILANG coding challenge.
Loads and executes AILANG coding challenges for hands-on AI programming practice.
/plugin marketplace add sunholo-data/ailang_bootstrap/plugin install sunholo-data-ailang@sunholo-data/ailang_bootstrapLoad and run an AILANG coding challenge.
| ID | Name | Difficulty | What You'll Learn |
|---|---|---|---|
ask-ai | Ask AI | Beginner | AI integration basics |
summarize-file | File Summarizer | Intermediate | File I/O + AI |
ai-debate | AI Debate | Intermediate | Multi-call AI orchestration |
game-of-life | Game of Life | Intermediate | Pure computation, arrays, visual output |
Suggested order: ask-ai → summarize-file → ai-debate → game-of-life
If a challenge name was provided, load it:
cat challenges/$ARGUMENTS/challenge.md
Then follow the instructions in the challenge.
challenges/$ARGUMENTS/solution.ail/ailang-prompt to load syntax reference when neededailang builtins list --verbose --by-modulechallenges/$ARGUMENTS/hints.md if stuck (not all challenges have hints)Compare with the reference solution:
cat challenges/$ARGUMENTS/solution.ail
Run the reference:
# For game-of-life:
ailang run --caps IO,FS --entry main challenges/$ARGUMENTS/solution.ail
# For AI challenges:
ailang run --caps IO,AI --ai-stub --entry demo challenges/$ARGUMENTS/solution.ail
Now load: $ARGUMENTS