[Plib-cvs] plib/examples/src/psl/data test.psl,1.24,1.25
Brought to you by:
sjbaker
From: Steve B. <sj...@us...> - 2002-09-14 20:52:45
|
Update of /cvsroot/plib/plib/examples/src/psl/data In directory usw-pr-cvs1:/tmp/cvs-serv22648/plib/examples/src/psl/data Modified Files: test.psl Log Message: Fixed bug in PSL expression handler. Index: test.psl =================================================================== RCS file: /cvsroot/plib/plib/examples/src/psl/data/test.psl,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- test.psl 14 Sep 2002 06:23:27 -0000 1.24 +++ test.psl 14 Sep 2002 20:52:42 -0000 1.25 @@ -2,7 +2,8 @@ void main () { - for ( int i = 0 ; i < 0x10 ; i++ ) - printf ( "Hello ", i, "\n" ) ; + int diff ; + + if ( diff == 1 ) { diff = 2 ; } else { diff = 3 ; } } |