Skip to content
Max Base edited this page Jul 6, 2018 · 21 revisions

Welcome to the ET wiki!

ET is an open source system programming language that easy to build , reliable, and efficient, performance software.

Getting started

Types

  • Int

  • Float

  • Char

  • String

  • Bool

  • Function

  • Void

Variable

<type> <name> [=<value>] ;

such as below codes :

string name;
int age=53;

Function

<return_type> <name>( [<type> <name>,] )
{
   <statements>
}

such as below codes :

void test()
{

}
int name(string name)
{
return 5;
}
Clone this wiki locally