How to Publish to Amazon Kindle

Publishing to Amazon Kindle is fun and easy, if you have the right tools.

 

// A sample class
class Human {
	private int age = 0;
	public void birthday() {
		age++;
		print('Happy Birthday!');
	}
}