GitXplorerGitXplorer
n

crafty

public
8 stars
2 forks
0 issues

Commits

List of commits on branch master.
Unverified
9d5d34157a429b5c3c161b3e6012ba9860423632

Update README.md

nnc-x committed 5 years ago
Verified
16e94eca4391e16394f6a4094841cb20a8004195

Merge pull request #1 from kaushalmodi/fix-devel-compilation

nnc-x committed 6 years ago
Unverified
60cbc3fbad08776d8972b984a1bb03575f466809

Fix compilation on nim devel as of 2019/05/12

kkaushalmodi committed 6 years ago
Unverified
ac504f049a0e29350e4740283faa11983975c27f

Update for latest nim devel

nnc-x committed 6 years ago
Unverified
d83f25978d01083425ca6cc0a987e2fd894bc137

Crafty requires --multimethods:on on nim v0.19.9+

nnc-x committed 6 years ago
Unverified
4878a1cb2d75b55c8d8472bf6060aec2ab24aae9

Chapter 13. Inheritance

nnc-x committed 7 years ago

README

The README file for this repository.

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