Skip to content

Instantly share code, notes, and snippets.

@huysentruitw
Created January 25, 2020 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save huysentruitw/56854292f5a952a6062b491756fe3ffb to your computer and use it in GitHub Desktop.
Save huysentruitw/56854292f5a952a6062b491756fe3ffb to your computer and use it in GitHub Desktop.
nanoFramework example code
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