Content deleted Content added
→Ambiguous: new section |
Tag: |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1:
{{WikiProject banner shell|class=Start|
{{WikiProject JavaScript
{{WikiProject Java
{{WikiProject Computing
{{WikiProject Mozilla|importance=low
}}
▲ Rhino was released to Mozilla Foundation in April 1998.
how is released to Mozilla, while Mozilla is founded 2003? http://en.wikipedia.org/wiki/Mozilla_Foundation <span style="font-size: smaller;" class="autosigned">— Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[Special:Contributions/91.216.253.212|91.216.253.212]] ([[User talk:91.216.253.212|talk]]) 15:39, 20 January 2014 (UTC)</span><!-- Template:Unsigned IP --> <!--Autosigned by SineBot-->
==Untitled==
Line 19 ⟶ 16:
The second example is buggy: At EOF, S.readLine() will return null, so S.readLine().toUpperCase() throws an exception. better:
<
// The same as: import java.io.*;
importPackage(java.io);
Line 34 ⟶ 31:
if (s) System.out.println(s.toUpperCase());
}
</syntaxhighlight>
-- Shouldn't this be sufficient (and more readable):
<
// The same as: import java.io.*;
importPackage(java.io);
Line 49 ⟶ 46:
System.out.println(s.toUpperCase());
}
</syntaxhighlight>
[[User:Socramus|Socramus]] ([[User talk:Socramus|talk]]) 14:41, 22 April 2010 (UTC)
|