Skip to content

Commit

Permalink
Update pxt.json, test.md
Browse files Browse the repository at this point in the history
  • Loading branch information
neonerz committed Sep 25, 2023
1 parent 4f0f465 commit 3f4f536
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pxt.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"scene5a.md",
"scene5b.md",
"scene5c.md",
"scene5d.md"
"scene5d.md",
"test.md"
],
"testFiles": [],
"targetVersions": {
Expand Down
30 changes: 30 additions & 0 deletions test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
### @flyoutOnly true
### @hideIteration true
### @explicitHints true

# TEST 9/25/2025 @ 2:26PM

## Step 1
Oh no! The Smart Lawnmower isn't too smart! It's running over sprinkler heads breaking them! Read through the code and update it so the lawnmower will first check for sprinkler heads before continuing.

```ghost
hoc2023.scene2_GrassCut()
hoc2023.scene2_CheckSprinklerGrassCut()
hoc2023.scene2_LawnmowerNextRow()
hoc2023.scene2_LawnmowerMoveForward()
```
```template
for (let i = 0; i < 4; i++ ) {
hoc2023.scene2_LawnmowerMoveForward()
hoc2023.scene2_GrassCut()
hoc2023.scene2_LawnmowerMoveForward()
hoc2023.scene2_GrassCut()
hoc2023.scene2_LawnmowerMoveForward()
hoc2023.scene2_GrassCut()
hoc2023.scene2_LawnmowerNextRow()
}
```

```package
artemis-ts=github:ReWrite-Media/hoc2023-ts#v0.0.2
```

0 comments on commit 3f4f536

Please sign in to comment.