mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-06-29 19:05:10 +08:00
13 lines
176 B
Perl
13 lines
176 B
Perl
#!/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__
|