Inline::Basic - Write Perl subroutines in Basic


Inline-Basic documentation  | view source Contained in the Inline-Basic distribution.

Index


NAME

Top

Inline::Basic - Write Perl subroutines in Basic

SYNOPSIS

Top

  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

Top

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

Top

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.

SEE ALSO

Top

Inline, Language::Basic


Inline-Basic documentation  | view source Contained in the Inline-Basic distribution.