Acme-Syntax-Python

 view release on metacpan or  search on metacpan

t/01-function.t  view on Meta::CPAN

use lib './lib';
use Acme::Syntax::Python;
from Data::Dumper import Dumper, DumperX;
import Test::More;

def test:
    ok(1, "Functions Working");

def test2: ok(1, "Single Line Functions Work Too");

def test3($var1):
    ok($var1, "Functions with Params works");

test();
test2();
test3(1);
done_testing();

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.582 second using v1.00-cache-2.02-grep-82fe00e-cpan-2c419f77a38b )