Skip to content

lilthread/olm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OLM (Otro lenguage más)

Description

Personal interpreter in C++ for my programming language.

-- Go to projects/ to see more
func fib(n)
  si n < 2 haz
    devolver n
  fin
  devolver fib(n - 1) + fib(n - 2)
fin

escribe("El resultado es:", fib(10))

Installation

git clone https://github.com/lilthread/olm.git
cd olm
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build

About

Interpreter for my programming language

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Contributors