PrusaSlicer-NonPlainar/xs/t/01_trianglemesh.t

13 lines
176 B
Perl
Raw Normal View History

2013-06-22 15:16:45 +00:00
#!/usr/bin/perl
use strict;
use warnings;
use Slic3r::XS;
use Test::More tests => 1;
is Slic3r::TriangleMesh::XS::hello_world(), 'Hello world!',
'hello world';
__END__