-
-
21 Oct 2001 22:33:46 UTC
- Distribution: Inline-Basic
- Module version: 0.01
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues
- Testers (119 / 226 / 1)
- Kwalitee
Bus factor: 1- 50.62% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (1.69KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
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.
SEE ALSO
Module Install Instructions
To install Inline::Basic, copy and paste the appropriate command in to your terminal.
cpanm Inline::Basic
perl -MCPAN -e shell install Inline::Basic
For more information on module installation, please visit the detailed CPAN module installation guide.