Created
January 25, 2020 21:47
-
-
Save huysentruitw/56854292f5a952a6062b491756fe3ffb to your computer and use it in GitHub Desktop.
nanoFramework example code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading; | |
namespace NFApp1 | |
{ | |
public class Program | |
{ | |
public static void Main() | |
{ | |
Console.WriteLine("Hello world!"); | |
Thread.Sleep(Timeout.Infinite); | |
// Browse our samples repository: https://github.com/nanoframework/samples | |
// Check our documentation online: https://docs.nanoframework.net/ | |
// Join our lively Discord community: https://discord.gg/gCyBu8T | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment