Skip to content

Welcome to the LiteScript Interpreter, a project dedicated to building an interpreter for the LiteScript programming language using TypeScript.

Notifications You must be signed in to change notification settings

acharyamanish006/LiteScript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LiteScript

Overview

Screenshot from 2024-01-26 16-21-03

Welcome to the LiteScript Interpreter, a project dedicated to building an interpreter for the LiteScript programming language using TypeScript. LiteScript is designed to be a lightweight and user-friendly language, providing an easy-to-understand syntax while maintaining powerful capabilities.

import { Lexer } from "./lexer"
import { Parser } from "./parser"

let code = `let ab = 88`


let Interpreter = new Lexer(code);

let tok = Interpreter.Tokenize();


console.log(tok)
let parser= new Parser(tok);

parser.parse()

About

Welcome to the LiteScript Interpreter, a project dedicated to building an interpreter for the LiteScript programming language using TypeScript.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published