module mcell; behavior GetCellValue{ void act(String args[]){ if (args.length != 1) { standardOutput<-println( "Usage: salsa mcell.GetCellValue " ); return; } Cell c = (Cell) Cell.getReferenceByName(new UAN(args[0])); standardOutput<-print("Cell Value:") @ c<-get() @ standardOutput<-println(token); } }