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