NAME
Inline::Basic - Write Perl subroutines in Basic
SYNOPSIS
use Inline 'Basic';
print "1 + 5 = ", FNA(1), "\n";
print "2 * 10 = ", FNB(2), "\n";
__END__
__Basic__
010 DEF FNA(X) = INT(X + 5)
020 DEF FNB(X) = INT(X * 10)
DESCRIPTION
Inline::Basic allows you to include Basic code in your Perl program. Currently only function definitions in Basic is supported.
See Inline for details about Inline API.
AUTHOR
Tatsuhiko Miyagawa <miyagawa@bulknews.net>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.