Changes

Jump to navigation Jump to search
534 bytes added ,  03:51, 14 December 2019
m
Line 3: Line 3:  
==Source code Display==
 
==Source code Display==
 
The Pygments library installed in this wiki provides support for hundreds of computer languages and file formats.</translate>
 
The Pygments library installed in this wiki provides support for hundreds of computer languages and file formats.</translate>
 +
===Code Language Example===
 +
 +
<pre>
 +
<source lang="csharp">
 +
// Hello World in Microsoft C# ("C-Sharp").
 +
 +
using System;
 +
 +
class HelloWorld
 +
{
 +
    public static int Main(String[] args)
 +
    {
 +
        Console.WriteLine("Hello, World!");
 +
        return 0;
 +
    }
 +
}
 +
</source>
 +
<nowiki></nowiki></pre>
 +
 +
Results in:
 +
 +
<source lang="csharp">
 +
// Hello World in Microsoft C# ("C-Sharp").
 +
 +
using System;
 +
 +
class HelloWorld
 +
{
 +
    public static int Main(String[] args)
 +
    {
 +
        Console.WriteLine("Hello, World!");
 +
        return 0;
 +
    }
 +
}
 +
</source>
 +
 
=== Programming languages ===
 
=== Programming languages ===
 
<blockquote>
 
<blockquote>
4,000

edits

Navigation menu