mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-11 12:49:06 +01:00
17 lines
232 B
C
17 lines
232 B
C
|
|
#include <ruby.h>
|
|
|
|
static VALUE
|
|
m_hello (VALUE self)
|
|
{
|
|
return rb_str_new2("Hello World");
|
|
}
|
|
|
|
void
|
|
Init_mytest_ext (void)
|
|
{
|
|
VALUE mTest = rb_define_module ("MytestInt");
|
|
|
|
rb_define_module_function (mTest, "hello", m_hello, 0);
|
|
}
|