#! /usr/bin/perl -w

use strict;
use ExtUtils::testlib;


use Wurst qw(challo addor);

print "\n achtung, jetzt kommt Ausgabe aus C-Code";

challo();

my ($links, $rechts) = ( 1, 2 );
print "\n jetzt wird plusgerechnet... $links + $rechts  = ",
      addor($links, $rechts), "\n";
