zuzu-rust 0.6.0

Rust implementation of ZuzuScript
Documentation
1
2
3
4
5
6
7
8
9
class WebController {
	static method greet ( req ) {
		return req.new_response(
			status: 200,
			headers: { "Content-Type": "text/plain; charset=UTF-8" },
			body: [ "lazy:", req.param("name") ],
		);
	}
}