Rhino shell
•Simple read-eval-print loop
•Defines extra convenience functions
•
•js> 3+4
•7
•js> function f(a) {
•        print(a);
•}
•js> f(7)
•7
•