Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 284 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 284 Bytes

nimble build to compile and then run the resulting binary

Example

File: hello.craft

class Hello {
	greet() {
		print "hello";
	}
}

var h = Hello();
h.greet();

crafty hello.craft => hello