blob: f2ccf3772209c4fdf4dbcdf5f34ea620eb769d1d (
plain)
1
2
3
4
5
6
7
8
|
require 'ffi'
module Foo
extend FFI::Library
ffi_lib FFI::Library::LIBC
attach_function("cputs", "puts", [ :string ], :int)
end
Foo.cputs("Hello, World via libc puts using FFI on MRI ruby")
|