new
Syntax: new record ( param, ... );
- record is the record to use.
For instance:
record dblstr{
string a;
string b;
};
dblstr test;
test.a = "hello";
test.b = "world";
is functionally identical to
record dblstr{
string a;
string b;
};
dblstr test = new dblstr("hello","world");
Formatting Needed