Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 892 Bytes

README.md

File metadata and controls

35 lines (27 loc) · 892 Bytes

The Strobe Programming Langauge

Strobe is a dynamic programming langauge that gets compiled into a DIF executable.

If you find some bugs report them at Issues, so we can fix them.

#include <bioslib.str>

namespace Name
{
	function Main()
	{
		System.Write("Hello, World!\n");
		System.Exit(0);
	}
}

The syntax is influenced by the following programming languages:

  • C - for the pre-processor instructions and comments;
  • X# - for the namespaces, functions and idea;
  • C# - for the namespaces and library names;
  • PHP - for the variables and functions;

How do i get started?

Read the wiki, starting with this page.

Currently Working On:

Loops and Comparations

Extended Math Operations

C++ Runtime

###Do you want to support us?

Contribute!