Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 657 Bytes

readme.md

File metadata and controls

37 lines (25 loc) · 657 Bytes

ZeroLang(still woking on it!)

0. Introduction

A simple programing language based on basic

  • Still working on it
  • Now is a simpile interpreter which support basic arithmetic operations

1. Quick start

  python3 shell.py 

2. functions

  • Support basic operations
  • Support variable definition
  • Support comparison operations
  • Support if statement
  • Support while and for(check more detail in grammar.txt )
  #for loop:
  var res=0
  for i=0 to 6 then var res=res+i
  
  #while loop:
  var res=0
  while res<10000 then var res=res+1
  
  

3. Recently:

  • working on function
  • function lexer is ready
  • Happy New Year 2025