Files
herolib/tests/main.v
2025-10-12 12:30:19 +03:00

13 lines
244 B
V

import incubaid.herolib.threefold.incatokens
import incubaid.herolib.core.playcmds
import os
const heroscript_path = os.dir(@FILE) + '/data'
fn main() {
playcmds.run(
heroscript_path: heroscript_path
)!
println('Simulation complete!')
}