Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 461 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 461 Bytes

// ATOM - programming language // It's a tiny, simple language, but powerful enough to express any calculation imaginable. It will allow simple function-based abstractions. /* Sintyx

do() - body-block define() - vairable, 1st arg - variable, 2d - value if(==()) - boolean 1st arg - operator example compare (==), 2d - values func() - first arg - name func, 2nd - param-s print() - return/console.log

do(define(name, "Hello ATOM"), print(name)) */