top of page

Aagmaaldev ❲2027❳

store Counter state count = 0 action increment() count += 1

Running aagmaaldev build --target web produces a bundle for browsers; --target mobile creates a native wrapper (via React‑Native or Flutter, depending on the plugin). # Development build with hot‑reload aagmaaldev dev

The config file defines targets:

component CounterDisplay use Counter render() "<p>Counter.count</p>"

# Production build aagmaaldev build --target web --mode production Tests live in tests/ and use the built‑in AagmaalTest runner: aagmaaldev

test "counter increments" let c = Counter() c.increment() assert(c.count == 1)

Components can subscribe:

module.exports = targets: [ name: "web", entry: "src/main.aag", output: "dist/web" , name: "mobile", entry: "src/main.aag", output: "dist/mobile" ]

ADDRESS.
Bell Gully Building,
Level 2, 40 Lady Elizabeth Lane,
Wellington, New Zealand, 6011

TELEPHONE. +64 4 460 5243

%!s(int=2026) © %!d(string=Elegant Portal). Motion Tech Lab, Limited

bottom of page