[Plib-cvs] plib/examples/src/psl/data test.psl,1.5,1.6
Brought to you by:
sjbaker
From: Steve B. <sj...@us...> - 2002-09-06 16:44:54
|
Update of /cvsroot/plib/plib/examples/src/psl/data In directory usw-pr-cvs1:/tmp/cvs-serv26424/plib/examples/src/psl/data Modified Files: test.psl Log Message: Local variables (including nested locals) now works. Index: test.psl =================================================================== RCS file: /cvsroot/plib/plib/examples/src/psl/data/test.psl,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- test.psl 6 Sep 2002 15:07:44 -0000 1.5 +++ test.psl 6 Sep 2002 16:44:50 -0000 1.6 @@ -14,12 +14,19 @@ { x = 0 ; - while ( x < 10 ) + print ( x ) ; + { - print ( x, y ) ; - wibble () ; - pause ; + float x = 123 ; + + print ( x ) ; + + { + float x = 456 ; + print ( x ) ; + } + + print ( x ) ; } } - |