View on GitHub

Concert

Concert is an imperative, concurrent, strongly typed scripting language

Download this project as a .zip file Download this project as a tar.gz file

Home Keywords

Keyword new

Descrption

Create a new struct.

Example

struct "coordinate";
	int x;
	int y;
struct;

# new struct is named c1
new "coordinate" "c1";

c1.x = 101;
c1.y = 202;