summaryrefslogtreecommitdiff
path: root/test/files/script/fact.bat
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2008-11-01 20:01:29 +0000
committermichelou <michelou@epfl.ch>2008-11-01 20:01:29 +0000
commitc50dd4e212fff79020f0100d1a81ab64b599251f (patch)
tree70a9254b69b4f1175b378b7e969d0188fd701759 /test/files/script/fact.bat
parent6599832787acde26f4b621c6e19ffe2bbbd180a1 (diff)
downloadscala-c50dd4e212fff79020f0100d1a81ab64b599251f.tar.gz
scala-c50dd4e212fff79020f0100d1a81ab64b599251f.tar.bz2
scala-c50dd4e212fff79020f0100d1a81ab64b599251f.zip
fixed "script" tests on Windows (Cygwin+DOS)
Diffstat (limited to 'test/files/script/fact.bat')
-rwxr-xr-xtest/files/script/fact.bat17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/files/script/fact.bat b/test/files/script/fact.bat
new file mode 100755
index 0000000000..bee0ba25c6
--- /dev/null
+++ b/test/files/script/fact.bat
@@ -0,0 +1,17 @@
+::#!
+:: fact - A simple Scala batch file that prints out the factorial
+:: of the argument specified on the command line.
+
+@echo off
+call scala -nocompdaemon %0 %*
+goto :eof
+::!#
+
+
+val x = argv(0).toInt
+
+def fact(x: Int):Int =
+ if(x==0) 1
+ else x*fact(x-1)
+
+Console.println("fact(" + x + ") = " + fact(x))