The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# this tests execution of external methods and/or functions




------------------------------------------------------------------------
Calling mt_method(
    foomsg = This is Foo,
    barmsg = This is Bar,
    bazmsg = This is Foo
)

mt_method(mt_method    foomsg = $foo    barmsg = $bar    bazmsg = $baz)
    foomsg               => This is Foo
    barmsg               => This is Bar
    bazmsg               => This is Foo
------------------------------------------------------------------------
Calling mt_function(
    foomsg = This is Foo,
    barmsg = This is Bar,
    bazmsg = This is Foo
)

mt_function(mt_function     foomsg = $foo    barmsg = $bar    bazmsg = $baz)
    foomsg               => This is Foo
    barmsg               => This is Bar
    bazmsg               => This is Foo
------------------------------------------------------------------------