[Plib-cvs] plib/examples/src/psl/data test.psl,1.19,1.20
Brought to you by:
sjbaker
From: Steve B. <sj...@us...> - 2002-09-14 01:30:08
|
Update of /cvsroot/plib/plib/examples/src/psl/data In directory usw-pr-cvs1:/tmp/cvs-serv9724/plib/examples/src/psl/data Modified Files: test.psl Log Message: Changed token parser to handle digraph operators. Added '<<' and '>>'. Index: test.psl =================================================================== RCS file: /cvsroot/plib/plib/examples/src/psl/data/test.psl,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- test.psl 13 Sep 2002 23:51:29 -0000 1.19 +++ test.psl 14 Sep 2002 01:30:05 -0000 1.20 @@ -2,7 +2,8 @@ void xxx ( int a, float b, string c ) { printf ( "Hello", a, b, c, "\n" ) ; - printf ( " ", 2 * 2 | 1 ) ; + printf ( " ", 2 << 2 | 1 ) ; + printf ( " ", 2 << 2 + 1 ) ; } |