설명 없음

runningwater 73ff604276 first interpreter framework 2 년 전
.idea 73ff604276 first interpreter framework 2 년 전
doc 73ff604276 first interpreter framework 2 년 전
src 73ff604276 first interpreter framework 2 년 전
.gitignore 3d2508ae84 first commit 2 년 전
README.md 73ff604276 first interpreter framework 2 년 전
pom.xml 3d2508ae84 first commit 2 년 전

README.md

Lox

 // Your first Lox program!
 print "Hello, world!";
  • Dynamic typing
  • Automatic memory management
  • Data Types
    • Booleans
    • Numbers
    • Strings
    • Nil
  • Expressions
    • Arithmetic
    • Comparison and equality
    • Logical operators
    • Precedence and grouping
  • Statements
  • Variables
  • Control Flow
  • Functions
  • Closures
  • Classes