zuzu-rust 0.6.0

Rust implementation of ZuzuScript
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from test/c23/traits import SpeciesLabel;

class ParentSpecies {
	const species := "canid";

	static method lineage () {
		return "root";
	}
}

class ChildSpecies extends ParentSpecies with SpeciesLabel {
	const species := "vulpes";

	static method lineage () {
		return super() _ ":child";
	}
}