// hello_world.dol - Test string literals in WASM
// This demonstrates the DOL -> WASM -> Loa string pipeline
// Host import for printing (from Loa)
sex fun vudo_print(ptr: i32, len: i32)
// Function that prints a greeting
fun greet() {
vudo_print("Hello, World!")
}
// Simple function for testing non-string code
fun add(a: i64, b: i64) -> i64 {
return a + b
}