Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hello-io.cs « wasm « sdks - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85892726e4d8dd35c63bb1c3b1f3529cd35082ab (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;
using System.IO;

public class Program
{
    private static void Main ()
    {
        var content = File.ReadAllText ("hello-io.cs");
        Console.WriteLine (content);
    }
}