Playground

Write and run Ash scripts in your browser, or use the REPL for interactive experimentation. The built-in js-echo agent echoes your prompt back.

Script
Output Status: ready
Click "Run" to execute the script.
loading WASM...
#!js-echo:0.1.0

print "=== Ash Playground ==="

TASKS = ["Check login", "Test search", "Review footer"]
for TASK in TASKS {
  do "Navigate and ${TASK}"
  print "Task: ${TASK}"
  print "Result: ${stdout}"
}

print "Completed ${len(TASKS)} tasks"