diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pydershell/test.js	Sun Sep 06 11:12:35 2009 -0700
@@ -0,0 +1,13 @@
+print('hello there dood');
+
+function blah() {
+  print('hi');
+  try {
+    throw new Error('baffs');
+  } catch (e) {
+    print('exception is ' + e);
+    throw e;
+  }
+}
+
+foo(blah);