We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Welcome to the ET wiki!
ET is an open source system programming language that easy to build , reliable, and efficient, performance software.
UInt8
UInt16
UInt32
UInt64
Int8
Int16
Int32
Int64
Size
USize
Float32
Float64
Float80
Char
String
Bool
Function
The "one-line" comment styles only comment to the end of the line or the current block of code.
such as below codes :
//here is a one-line comment. //programmer : name //date : 2012
The "multi-line" comment styles start of /* and end of */.
/*
*/
/* Programmer : Name Date : 2013 */ /* * Programmer : Name * Date : 2013 */
<type> <name> [=<value>] ;
string name; int age=53;
<return_type> <name>( [<type> <name>,] ) { <statements> }
void test() { } int name(string name) { return 5; }
void main() { print "Hello, World!"; }