Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 566 Bytes

File metadata and controls

30 lines (22 loc) · 566 Bytes

CFromRubyExample

Example to go with the Ruby Magic blog post.

To hack on this run:

$ bin/setup
$ bin/rake compile

And then run this play around:

`$ bin/console
irb(main):001:0> CFromRubyExample::Helpers.string("a string")
=> "String from Ruby: 'a string'"
irb(main):002:0> CFromRubyExample::NativeHelpers.string("a string")
=> "String from C: 'a string'"
irb(main):003:0>

Or run the tests:

bin/rake test