v/vlib/v/gen/native/tests/asm.vv

11 lines
92 B
V

fn asm_test() {
asm amd64 {
nop
}
println('inline works')
}
fn main() {
asm_test()
}