Content-Length: 264199 | pFad | http://github.com/PlatypusLanguage/CPlatypus

A5 GitHub - PlatypusLanguage/CPlatypus: Official Platypus Interpreter written in C# and .Net Core
Skip to content

PlatypusLanguage/CPlatypus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 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

Website: https://platypus.vfrz.fr/

Contact: contact@vfrz.fr

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

Releases

No releases published

Packages

No packages published








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://github.com/PlatypusLanguage/CPlatypus

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy