Module: RustExample
- Defined in:
- lib/rust_example/version.rb,
ext/rust_example/rust_example.c
Overview
Constant Summary collapse
- VERSION =
"0.1.0"
Class Method Summary collapse
Class Method Details
.hello ⇒ Object
6 7 8 9 10 11 |
# File 'ext/rust_example/rust_example.c', line 6 VALUE hello(void) { char *hello = hello_rust(); printf("%s\n", hello); return Qnil; } |