http://www.cs.rpi.edu/wwc/salsa
Hello World Example
•module demo;
•
•behavior HelloWorld {
•
•   void act( String[] argv ) {
•     
•      standardOutput<-print( "Hello" ) @
•      standardOutput<-print( "World!" );
•
•   }
•
•}