[Plib-cvs] plib/examples/src/psl/data test.psl,1.18,1.19
Brought to you by:
sjbaker
From: Steve B. <sj...@us...> - 2002-09-13 23:51:32
|
Update of /cvsroot/plib/plib/examples/src/psl/data In directory usw-pr-cvs1:/tmp/cvs-serv23216/plib/examples/src/psl/data Modified Files: test.psl Log Message: Added bitwise operators ^,&,|,!, ~ Index: test.psl =================================================================== RCS file: /cvsroot/plib/plib/examples/src/psl/data/test.psl,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- test.psl 13 Sep 2002 22:32:15 -0000 1.18 +++ test.psl 13 Sep 2002 23:51:29 -0000 1.19 @@ -2,6 +2,7 @@ void xxx ( int a, float b, string c ) { printf ( "Hello", a, b, c, "\n" ) ; + printf ( " ", 2 * 2 | 1 ) ; } |