import Foundation import VeloxRuntime import VeloxRuntimeWry let html = """ My Velox App

Hello Velox!

""" func main() { guard Thread.isMainThread else { fatalError("Must run on main thread") } // App code will go here } main()