zuzu-rust 0.6.0

Rust implementation of ZuzuScript
Documentation
1
2
3
4
5
6
7
8
9
10
11
from test/c25/traits import NamedSpeak;

class ItemContainer {
	class Item with NamedSpeak {
		let String name with get, set;
	}

	method build_item ( String value ) {
		return new self { Item }( name: value );
	}
}