epi²
Main Download Docs Relase Notes

epi² v_0.202

Bug fix and new features.



Easy to understand and to write.

print "Hello"
printc "Enter username:"
in username

switch username
    case "admin"
        print "Hello admin."
        print "Admin menu:"
    default
        print "Hello. " + uesrname

Why epi²?

This project is open-source, so you can colaborate its coding on GitHub.

Open-Source

epi² is a good preparation for starting to code in other languages like Python, Java, Kotlin or C++

Good for starting

We try our best for making weekly updates with new features.

Always updating

Here you can find examples of programs and features of epi².

Examples

print "Hello World!"
var text = "Coding on epi!"
replace "epi", "epi²" from text
print text_

Fast, easy and simple.

epi² aims to a fast and understable coding experience.

@ This program is a login
( This comments are multiline

printc "Enter username: " @ In-Built functions for coding faster

in username @ Algorithm-like programing for understanding the code

@ Code like other programing languages
switch username
    case "admin"
        print "Hello, Admin!"
        print "Admin stuff:"
    case "hacker"
        print "Access denied"
    default
        print "Hello, " + username

Easy to remember

epi² uses English phrases on functions for making learning easier.

file loginData is "loginData.db"

out "Username:"
in username

replace "dog", "cat" from username

append username to loginData

Based from the best programing languages

epi² was coded for being like Kotlin, Python, C++, C#, Java and Typescript.

function helloWorld:
    print "Hello, World!"

#helloWorld

var text = "Just some long text to test String Functions"

print text.Empty
print text.Type
print text.Substring(0,4)
print text.Contains("long")
print text.Encrypt("cat")