From 0f5671260474767d5fda1ef3e4160407688c967d Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Wed, 28 Jan 2015 13:06:59 -0800 Subject: [PATCH] stdlib -> cmdsys --- Docs/Tutorials/PLASMA/User Manual.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docs/Tutorials/PLASMA/User Manual.md b/Docs/Tutorials/PLASMA/User Manual.md index 20872340..15710f0e 100644 --- a/Docs/Tutorials/PLASMA/User Manual.md +++ b/Docs/Tutorials/PLASMA/User Manual.md @@ -11,7 +11,7 @@ To keep development compartmentalized and easily managed, PLASMA uses relatively To start things off, here is the standard introductory program: ``` -import stdlib +import cmdsys predef puts end @@ -62,7 +62,7 @@ The beginning of the source file is the best place for certain declarations. Thi Module dependencies will direct the loader to make sure these modules are loaded first, thus resolving any outstanding references. A module dependency is declared with the `import` statement block with predefined function and data definitions. The `import` block is completed with an `end`. An example: ``` -import stdlib +import cmdsys const reshgr1 = $0004 predef putc, puts, getc, gets, cls, gotoxy end