Difference between revisions of "Main Page"
From wiki.doumith.net
Line 6: | Line 6: | ||
<math>\LARGE x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}</math> | <math>\LARGE x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}</math> | ||
− | < | + | <source lang="javascript" line="2" highlight="4,6" title="title"> |
// SyntaxHighlighter makes your code snippets beautiful without tiring your servers. | // SyntaxHighlighter makes your code snippets beautiful without tiring your servers. | ||
− | |||
var setArray = function(elems) { | var setArray = function(elems) { | ||
this.length = 0; | this.length = 0; | ||
Line 14: | Line 13: | ||
return this; | return this; | ||
} | } | ||
− | </ | + | </source> |
Revision as of 23:59, 21 March 2016
MediaWiki has been successfully installed.
// SyntaxHighlighter makes your code snippets beautiful without tiring your servers. var setArray = function(elems) { this.length = 0; push.apply(this, elems); return this; }
Consult the User's Guide for information on using the wiki software.