User:Propeng/Drafts/EnglishSharp

From Esolang
Jump to navigation Jump to search

EnglishSharp is an esoteric programming language developed by Propeng that has a syntax similar to the English language. The code is converted to C# then compiled, a process similar to LOLPYTHON. An EnglishSharp compiler is currently in progress.

Examples

The famous hello world in EnglishSharp:

Use System.

Inside namespace EnglishSharp, do:
  Inside class HelloWorld, do:
    Begin method Main, a public static void, with parameters: string[] args
      Call WriteLine in System > Console, with parameters: "Hello, world!"
    End method Main.
  Outside class.
Outside namespace.