Files
herolib/examples/builder/remote_executor/toexec.v
Mahmoud Emad de45ed3a07 refactor: remove dependency on herolib.osal
- Replaced `freeflowuniverse.herolib.osal` with `freeflowuniverse.herolib.core`
2025-01-19 09:48:05 +02:00

19 lines
259 B
V

module main
import freeflowuniverse.herolib.core
fn do() ! {
// base.uninstall_brew()!
// println("something")
if core.is_osx()! {
println('IS OSX')
}
// mut job2 := osal.exec(cmd: 'ls /')!
// println(job2)
}
fn main() {
do() or { panic(err) }
}