Skip to content

A programming language that compiles to JavaScript.

Notifications You must be signed in to change notification settings

NILL2021/AxleScript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

AxleScript

A programming language that compiles to JavaScript.

fn hello(name) {
  doc.replace_all("<h1>Hello, " ~ name ~ "!</h1>")
  log("Done!")
}
 hello("There")

->

function hello(name) {
  document.write("<h1>Hello, " + name + "!</h1>");
  console.log("Done!");
}
hello("There!");

About

A programming language that compiles to JavaScript.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published