Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 482 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 482 Bytes

file

The Gas Programming Language

This programming language allows to script any program that involves Java code.

println("Hello world!", "This is Gaslang!")

This was created by me just for fun and experience and has no purpose.

Simple Console Calculator

let inputScanner = InputScanner()
let x, y = inputScanner.nextNumber(), inputScanner.nextNumber()
println(x + y)