15 lines
184 B
Plaintext
15 lines
184 B
Plaintext
|
%module{Slic3r::TriangleMesh::XS};
|
||
|
%package{Slic3r::TriangleMesh::XS};
|
||
|
|
||
|
%{
|
||
|
PROTOTYPES: DISABLE
|
||
|
|
||
|
std::string
|
||
|
hello_world()
|
||
|
CODE:
|
||
|
RETVAL = "Hello world!";
|
||
|
OUTPUT:
|
||
|
RETVAL
|
||
|
|
||
|
%}
|