- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
BUG: 2.7.2 final, "scala -i file" loads the file twice.
Fri, 2008-12-26, 17:10
Suppose "file" is "toss.scala", containing, e.g.,
println("hello world!")
Invoking scala v2.7.2.final yields the following:
$ scala -i toss.scala
Loading /Users/deanwampler/tmp/toss.scala...
Hello World!
Loading /Users/deanwampler/tmp/toss.scala...
Hello World!
Welcome to Scala version 2.7.2.final (Java HotSpot(TM) Client VM, Java
1.5.0_16).
Type in expressions to have them evaluated.
Type :help for more information.
scala>
While, using scala v.2.7.1.final yields:
$ .../scala-2.7.1.final/bin/scala -i ~/tmp/toss.scala
Loading /Users/deanwampler/tmp/toss.scala...
Hello World!
Welcome to Scala version 2.7.1.final (Java HotSpot(TM) Client VM, Java
1.5.0_16).
Type in expressions to have them evaluated.
Type :help for more information.
scala>
I'm on a Mac, running JDK 1.5.
dean
Fri, 2008-12-26, 19:57
#2
Re: BUG: 2.7.2 final, "scala -i file" loads the file twice.
Dean,
I've submitted a bug report with the smallest patch I've ever created, to correct the manpage: https://lampsvn.epfl.ch/trac/scala/ticket/1603
By the way, these mailing lists stupidly have the reply-to address set incorrectly, so you'll need to remember to click reply all. You can make that the default in gmail, I think.
Cheers,
Ricky.
2008/12/26 Dean Wampler <deanwampler@gmail.com>
I've submitted a bug report with the smallest patch I've ever created, to correct the manpage: https://lampsvn.epfl.ch/trac/scala/ticket/1603
By the way, these mailing lists stupidly have the reply-to address set incorrectly, so you'll need to remember to click reply all. You can make that the default in gmail, I think.
Cheers,
Ricky.
2008/12/26 Dean Wampler <deanwampler@gmail.com>
Thanks. I'll do that. I followed the instructions for the online man
pages to send reports here.
dean
On Fri, Dec 26, 2008 at 10:20 AM, Ricky Clarkson
<ricky.clarkson@gmail.com> wrote:
> I'd suggest filing this on Scala's bugtracker -
> http://lampsvn.epfl.ch/trac/scala
>
> 2008/12/26 Dean Wampler <deanwampler@gmail.com>
>>
>> Suppose "file" is "toss.scala", containing, e.g.,
>> println("hello world!")
>>
>> Invoking scala v2.7.2.final yields the following:
>>
>> $ scala -i toss.scala
>> Loading /Users/deanwampler/tmp/toss.scala...
>> Hello World!
>>
>> Loading /Users/deanwampler/tmp/toss.scala...
>> Hello World!
>>
>> Welcome to Scala version 2.7.2.final (Java HotSpot(TM) Client VM, Java
>> 1.5.0_16).
>> Type in expressions to have them evaluated.
>> Type :help for more information.
>>
>> scala>
>>
>> While, using scala v.2.7.1.final yields:
>>
>> $ .../scala-2.7.1.final/bin/scala -i ~/tmp/toss.scala
>> Loading /Users/deanwampler/tmp/toss.scala...
>> Hello World!
>>
>> Welcome to Scala version 2.7.1.final (Java HotSpot(TM) Client VM, Java
>> 1.5.0_16).
>> Type in expressions to have them evaluated.
>> Type :help for more information.
>>
>> scala>
>>
>> I'm on a Mac, running JDK 1.5.
>>
>> dean
>> --
>> Dean Wampler
>> http://www.objectmentor.com
>> http://www.polyglotprogramming.com
>> http://www.aspectprogramming.com
>> http://aquarium.rubyforge.org
>> http://www.contract4j.org
>
>
--
Dean Wampler
http://www.objectmentor.com
http://www.polyglotprogramming.com
http://www.aspectprogramming.com
http://aquarium.rubyforge.org
http://www.contract4j.org
2008/12/26 Dean Wampler <deanwampler@gmail.com>