Changeset 9287
- Timestamp:
- 10/06/08 15:23:23 (1 month ago)
- Files:
-
- helma-ng/trunk/modules/global.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
helma-ng/trunk/modules/global.js
r9286 r9287 80 80 81 81 /** 82 * Basic print function compatible with other JavaScript implementations. 83 */ 84 this.print = function() { 85 for (var i = 0; i < arguments.length; i++) { 86 out.print(arguments[i]); 87 if (i < arguments.length) { 88 out.print(' '); 89 } 90 } 91 out.println(); 92 } 93 94 var out = java.lang.System.out; 95 96 /** 82 97 * Get the org.mozilla.javascript.Context associated with the current thread. 83 98 */