Difference between revisions of "Main Page"

From NMS
Jump to: navigation, search
(Syntax highlighting)
(Syntax highlighting)
Line 54: Line 54:
 
echo "this is a test"
 
echo "this is a test"
 
</bash>
 
</bash>
 +
 +
<c>
 +
#inclued "stdio.h"
 +
 +
int main(int argc, char *argv[]) {
 +
    printf("Hello World!");
 +
    return 0;
 +
}
 +
</c>

Revision as of 02:17, 17 January 2006

Wiki software successfully installed.

Please see documentation on customizing the interface and the User's Guide for usage and configuration help.

Official pages

Quick links

Special:Allmessages MediaWiki:Sidebar Main Page

Tests

Formating

Lists

  • item 1
  • item 2
  • item 3
  1. item 1
  2. item 2
  3. item 3
  • item 1
    • subitem 1
    • subitem 2
      • subsubitem 1
      • subsubitem 2

Links

Tables

Preformated

Extensions

LaTeX

<math>\alpha, \beta, \gamma, ...</math>

<math>x^2+y^2=z^2</math>

<math>\sum_{i=0}^100 i</math>

<math>\int_0^{10} x=[\frac{1}{2}*x^2]_0^{10}</math>

Syntax highlighting

<bash>

  1. !/bin/sh

echo "this is a test" </bash>

<c>

  1. inclued "stdio.h"

int main(int argc, char *argv[]) {

   printf("Hello World!");
   return 0;

} </c>