basic/
lib.rs

1//! # 64K BASIC
2//! ```text
3//! READY.
4//! █
5//! ```
6//! This is the manual. For binaries and games, start here: <http://basic-lang.org>
7//!
8//! 64K BASIC is compatible with programs from the beginning of personal computing.
9//! It is designed to capture and preserve the best parts of the BASIC experience.
10//! Getting a programming manual with your new computer hardware is best.
11//!
12
13#[path = "doc/introduction.rs"]
14#[allow(non_snake_case)]
15pub mod _Introduction;
16
17#[path = "doc/chapter_1.rs"]
18#[allow(non_snake_case)]
19pub mod __Chapter_1;
20
21#[path = "doc/chapter_2.rs"]
22#[allow(non_snake_case)]
23pub mod __Chapter_2;
24
25#[path = "doc/chapter_3.rs"]
26#[allow(non_snake_case)]
27pub mod __Chapter_3;
28
29#[path = "doc/appendix_a.rs"]
30#[allow(non_snake_case)]
31pub mod ___Appendix_A;
32
33#[path = "doc/appendix_b.rs"]
34#[allow(non_snake_case)]
35pub mod ___Appendix_B;
36
37#[path = "doc/appendix_c.rs"]
38#[allow(non_snake_case)]
39pub mod ___Appendix_C;
40
41pub mod lang;
42pub mod mach;