basic-lang 0.2.0

The BASIC programming language as it was in 1978.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*!
## Rust Terminal Module

Because BASIC must be interactive.

*/

// /* linefeed = "0.6" */
mod linefeed;
pub use crate::term::linefeed::main;

// /* rustyline = "6" */
// mod rustyline;
// pub use crate::term::rustyline::main;