From e07970819af8ae94d52b9ae740d2801618efc6a2 Mon Sep 17 00:00:00 2001 From: Jan Siwiec <jan.siwiec@vsb.cz> Date: Thu, 26 Mar 2020 13:09:54 +0100 Subject: [PATCH] Update csc.md --- docs.it4i/software/lang/csc.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs.it4i/software/lang/csc.md b/docs.it4i/software/lang/csc.md index ff5e1814b..cc99c4093 100644 --- a/docs.it4i/software/lang/csc.md +++ b/docs.it4i/software/lang/csc.md @@ -10,7 +10,7 @@ $ ml av mono ``` !!! note - Use the command `ml av mono` to get up-to-date versions of the modules. + Use the `ml av mono` command to get up-to-date versions of the modules. Activate C# by loading the Mono module: @@ -22,7 +22,7 @@ $ ml Mono ### Hello World -Copy this code to new file hello.cs: +Copy this code to a new file hello.cs: ```csc using System; @@ -59,7 +59,7 @@ Enter statements below. csharp> ``` -Now you are in interactive mode. You can try following example. +Now you are in the interactive mode. You can try the following example: ```csc csharp> using System; @@ -83,7 +83,7 @@ csharp> from f in Directory.GetFiles ("mydirectory") ## MPI.NET -MPI is available for mono. +MPI is available for mono: ```csc using System; @@ -119,6 +119,6 @@ Greetings from node 3 of 4 running on cn199 Greetings from node 1 of 4 running on cn199 ``` -For more informations look at [Mono documentation page][a]. +For more information, see the [Mono documentation page][a]. [a]: http://www.mono-project.com/docs/ -- GitLab