Talk:Rhino (JavaScript engine): Difference between revisions

Content deleted Content added
Ambiguous: new section
Implementing WP:PIQA (Task 26)
 
(2 intermediate revisions by 2 users not shown)
Line 1:
{{WikiProject banner shell|class=Start|
{{WikiProjectBannerShell|1=
{{WikiProject JavaScript|class=|importance=Low}}
{{WikiProject Java|class=start|importance=low|auto=yes}}
{{WikiProject Computing|class=start|importance=Low|software=yes|auto=yes}}
{{WikiProject Mozilla|importance=low|class=start}}
}}
Rhino was released to Mozilla Foundation in April 1998.
 
 
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:
 
<sourcesyntaxhighlight lang="javascript">
// The same as: import java.io.*;
importPackage(java.io);
Line 34 ⟶ 31:
if (s) System.out.println(s.toUpperCase());
}
</syntaxhighlight>
</source>
-- Shouldn't this be sufficient (and more readable):
<sourcesyntaxhighlight lang="javascript">
// The same as: import java.io.*;
importPackage(java.io);
Line 49 ⟶ 46:
System.out.println(s.toUpperCase());
}
</syntaxhighlight>
</source>
[[User:Socramus|Socramus]] ([[User talk:Socramus|talk]]) 14:41, 22 April 2010 (UTC)