Fields look like java field definitions including the initializer:
classs T {
type field1 = init1;
type field2; }
While Mantra is not statically typed, you still need to specify a
field type. You can also specify static and const to indicate class
variables:
class T {
static int x = 3;
const HEIGHT = 100;
}