Microsoft Small Basic is an open source programming language created in 2008.
#1503on PLDB | 16Years Old |
Microsoft Small Basic is a programming language and associated IDE. It is Microsoft's simplified variant of the BASIC programming language, intended as an easy programming language for beginners. The associated IDE provides a simplified programming environment with functionality such as syntax highlighting, intelligent code completion, and in-editor documentation access. Read more on Wikipedia...
[SmallBasicType]
public static class ExampleClass
{
public static Primitive Add(Primitive A, Primitive B) => A + B;
public static Primitive SomeProperty
{
get;
set;
}
public static Primitive Pi => (Primitive)3.14159;
}