11 lines
159 B
Ruby
11 lines
159 B
Ruby
|
require 'ffi'
|
||
|
|
||
|
module Hello
|
||
|
extend FFI::Library
|
||
|
ffi_lib 'target/release/libembed.dylib'
|
||
|
attach_function :process, [], :void
|
||
|
end
|
||
|
|
||
|
Hello.process
|
||
|
|
||
|
puts 'done!'
|