Skip to content

PlatypusLanguage/CPlatypus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CPlatypus

Platypus is a non-typed, object-oriented, open-source, grammar-customizable, easy-to-learn, interpreted programming language!

CPlatypus is an official interpreter written in C# and running on .Net Core

Code samples

Hello world

#lang=default#

print("Hello world")

Fibonacci

#lang=default#

function fibonacci(n)
    if (n <= 1)
        return n
    else
        return fibonacci(n-1) + fibonacci(n-2)
    end
end

var i = 0

while(i < 16)
    print(fibonacci(i))
    i = i + 1
end

About

Official Platypus Interpreter written in C# and .Net Core

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published