Skip to content

jsowl is a programming language, based on and compiling to JavaScript.

Notifications You must be signed in to change notification settings

codeaddicts/jsowl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 ();
}) ();

About

jsowl is a programming language, based on and compiling to JavaScript.

Resources

Stars

Watchers

Forks

Packages

No packages published