summaryrefslogtreecommitdiff
path: root/test/disabled/fact.bat
diff options
context:
space:
mode:
Diffstat (limited to 'test/disabled/fact.bat')
-rwxr-xr-xtest/disabled/fact.bat17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/disabled/fact.bat b/test/disabled/fact.bat
new file mode 100755
index 0000000000..bee0ba25c6
--- /dev/null
+++ b/test/disabled/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))