From c50dd4e212fff79020f0100d1a81ab64b599251f Mon Sep 17 00:00:00 2001 From: michelou Date: Sat, 1 Nov 2008 20:01:29 +0000 Subject: fixed "script" tests on Windows (Cygwin+DOS) --- test/files/script/fact.bat | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 test/files/script/fact.bat (limited to 'test/files/script/fact.bat') 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)) -- cgit v1.2.3