Imports

You can import other js files in your setup and/or blocks that use code

# Imports

:: setup
import { sum } from "/scripts/math.js"

const count = 1

function testSum(a, b) {
    return sum(a, b)
}

const arrowFn = () => {
    
}


::

Test sum: {{ sum(15, 6) }}

Testando escrever um texto bem comprido

Preview