Skip to main content
Open-Source Documentation

Learn to Code Your
Digital Garden

The complete unofficial wiki for LAU — a custom programming language designed for growing, managing, and automating your in-game gardens through elegant code.

garden.lau
plant ( "rose" )
water ( amount: 3 )
grow ( speed: "fast" )
Interactive Examples

Code Snippets

Click any block to expand and explore. Copy snippets directly into your game console.

garden.create("My First Garden")
plant("sunflower", x: 0, y: 0)
water(amount: 3)
wait(10)
harvest()
loop (count: 5) {
plant("carrot")
water(amount: 2)
wait(5)
}
funcplantRow(type, count) {
loop (count) {
plant(type)
}
}
plantRow("tulip", 8)
Visual Guides

Images & Video Demos

Visual demonstrations, screenshots, and video walkthroughs of LAU in action.

Insert Video Here

Embed a YouTube/Vimeo link or upload an MP4

Video Demo: Getting Started with LAU

Insert Image Here

Drag & drop or paste an image URL

Screenshot: The LAU Code Editor Interface

Insert Image Here

Drag & drop or paste an image URL

Screenshot: Garden Growth Visualization

Insert Video Here

Embed a YouTube/Vimeo link or upload an MP4

Video Demo: Automation Loop in Action

🌻

Ready to Start Growing?

Jump into the tutorials, experiment with code snippets, and start building your dream garden — one line of LAU at a time.

Browse Tutorials