commit 2cb93f70133d480403191458592506aae1ee0f5b Author: D4VID Date: Wed May 8 12:11:25 2024 +0200 mine one diff --git a/mine.lua b/mine.lua new file mode 100644 index 0000000..308dae1 --- /dev/null +++ b/mine.lua @@ -0,0 +1,11 @@ +local robot = require("robot") + +local function mine() + robot.swing() + robot.up() + robot.swing() + robot.down() + robot.forward() +end + +mine()