Creation Wasteland Logo
★ Featured
Datalys2

Datalys2

A light-weight configuration-driven framework for creating dynamic dashboards and interactive reports. Build beautiful data visualizations with minimal code and export them as standalone HTML files that can be hosted anywhere.

NANOSCRIPT SANDBOX
// nanoscript
function fib(n: int): int {
    if (n < 2) { return n; }
    return fib(n - 1) + fib(n - 2);
}
console.log(`fib(25) = ${fib(25)}`);
→ fib(25) = 75025  (13 ms)

Try nanoscript in your browser

Write and run nanoscript right on this site — a full editor with a console, live error checking, and example programs to open, edit, and run. No install required.

  • Syntax highlighting and errors as you type
  • Example programs included
  • Runs on a JS or WebAssembly backend