Skip to content

Wuttyi v1.0.0 (zoro) stable release

Latest
Compare
Choose a tag to compare
@theaungmyatmoe theaungmyatmoe released this 28 Aug 23:54

v1.0.0 (zoro)

  • Imperative, Functional and Object-Oriented paradigms
  • Number, String, Common Math Operators, Comparison Operators and Logical Operators
  • Variable, Scope and Scope Chain, Lexical Scoping
  • Function, Closure, HoFs, Lambda, Immediately Invoked Function Expression (IIFE) and Immediately Invoked Lambda
    Expression ( IILE)
  • Control Flows
  • Class and Inheritance
  • Module System
// factorial
(func factorial (x)
    (begin
        (if (= x 1)
            1 // true
            (begin
               (* x (factorial (- x 1)))
            )
        )

    )
)

(print (factorial 5))

Documentaion
https://wuttyi.vercel.app/