Skip to content

Latest commit

 

History

History
34 lines (31 loc) · 561 Bytes

README.md

File metadata and controls

34 lines (31 loc) · 561 Bytes

Welcome.

jsowl is a programming language, based on and compiling to JavaScript.
It's much cleaner than JavaScript, supports classes and is generally a lot more beautiful.

Just convice yourself:

def main {
	let test = new Test ();
	test.Say ("Hello, World!");

	class Test {
		public def Say (msg) {
			alert (msg);
		}
	}
}

versus

(function () {
	function main () {
		var test = new Test ();
		test.Say ('Hello, World!');
		function Test () {
			this.Say = function (msg) {
				alert (msg);
			}
		}
	}
	main ();
}) ();