comparison pydershell/test.js @ 10:fb25af17bae6

Added pydershell.
author Atul Varma <varmaa@toolness.com>
date Sun, 06 Sep 2009 11:12:35 -0700
parents
children 1d62177c5c27
comparison
equal deleted inserted replaced
9:0f1545ef023e 10:fb25af17bae6
1 print('hello there dood');
2
3 function blah() {
4 print('hi');
5 try {
6 throw new Error('baffs');
7 } catch (e) {
8 print('exception is ' + e);
9 throw e;
10 }
11 }
12
13 foo(blah);