16 lines
232 B
JavaScript
16 lines
232 B
JavaScript
import {run, svg} from "./ludus.mjs"
|
|
|
|
const code = `
|
|
print! (random ())
|
|
print! (random ())
|
|
print! (random ())
|
|
print! (random ())
|
|
print! (random ())
|
|
print! (random ())
|
|
|
|
`
|
|
|
|
const result = run(code)
|
|
|
|
console.log(result.io.stdout.data)
|