Update of /cvsroot/plib/plib/doc/psl
In directory usw-pr-cvs1:/tmp/cvs-serv27490/plib/doc/psl
Modified Files:
prog_guide.html
Log Message:
Updated documentation.
Index: prog_guide.html
===================================================================
RCS file: /cvsroot/plib/plib/doc/psl/prog_guide.html,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- prog_guide.html 22 Sep 2002 15:22:21 -0000 1.12
+++ prog_guide.html 22 Sep 2002 18:26:56 -0000 1.13
@@ -46,7 +46,7 @@
The following C features are implemented much as you'd expect:
<ul>
- <li> Types 'void', 'int' and 'float'.
+ <li> Types 'void', 'int' and 'float' (and arrays of those things).
<li> Function definitions.
<li> Global variable definitions.
<li> Statement types:
@@ -95,7 +95,7 @@
Some new features have been added that are not part of C:
<ul>
<li> "pause" -- Pause the program until next frame.
- <li> "string" data type.
+ <li> "string" data type (and arrays of strings).
<li> Casts are unnecessary between compatible types.
<li> C++ style '//' comments.
<li> C++ style local variable declarations.
@@ -123,10 +123,8 @@
The following features are "NOT IMPLEMENTED YET" - but will
hopefully arrive soon:
<ul>
- <li> Multiple assignments (eg x = y = 0 ; )
- <li> Arrays & Structs.
+ <li> Structs.
<li> '\' to escape the end-of-line character in strings and macro's.
- <li> Array bounds checking.
<li> Parameter passing by name.
<li> Many of C's standard library functions are needed.
</ul>
|