Accueil : Différence entre versions

De Logilys
Aller à : navigation, rechercher
Ligne 10 : Ligne 10 :
 
# ''[[ProDoc/en|Help documentation on ProDoc]]''
 
# ''[[ProDoc/en|Help documentation on ProDoc]]''
  
 +
<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>
  
  
 
{{Logilys_BasPage}}
 
{{Logilys_BasPage}}

Version du 5 novembre 2009 à 17:59

Logilys Wiki

Welcome to Logilys Wiki.


This Wiki is split into 4 big section :

  1. Help documentation on ProDon
  2. Help documentation on ProLoc
  3. Help documentation on ProLys
  4. Help documentation on ProDoc

<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>


Modèle:Logilys BasPage