Giter Site home page Giter Site logo

uni-lang's Introduction

The Uni programming language is a simple programming language for educational purposes.

How to install

In order to build it from the source code, you need git, and go version 1.19 or later. Run the following commands to build from the source code:

git clone [email protected]:parsaakbari1209/interpreter.git
cd interpreter
go build -o uni

How to use

The uni-lang uses .uni suffix(e.g. main.uni). Use the following command to execute a uni-lang source code:

// Linux
./uni main.uni

Syntax

Comments

# This is a comment!

Boolean

true
!false
true or false
true and true
false == false
true != false

Number

1
-1.0
1.0 + 2
1.0 - 2
1.0 * 2
1.0 / 2
1.0 < 2
1.0 > 2
1.0 <= 2
1.0 >= 2
1.0 == 2
1.0 != 2

String

"Hello World!"
"Hello" + " " + "World" + "!"

Variable

var a = 0
a = 0.0
a = "Hello World!"

Array

var num = [0, 1, 2]
num[0]

var str = ["Hello", "World", "!"]
str[0]

var mix = [1, "Hello", 1.5, "World"]
mix[0]

Map

var data = {"slug": "Hello World!", "version": 1}
data["slug"]

Condition

if a == b {
    #...
}

if a == b {
    #...
} else {
    #...
}

Loop

while true {
    #...
}

for k, v in "Hello World" {
    #...
}

for k, v in ["Hello", "World", "!"] {
    #...
}

for k, v in {"one": 1, "two": 2} {
    #...
}

Function

fn sum(a, b) {
    return a + b
}
sum(1, 2)

Built-in

len("Hello World!")
len(["Hello", "World", "!"])
len({1: "Hello", 2: "World", 3: "!"})
print("Hello World!")
println("Hello World!")

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.

License

MIT

uni-lang's People

Contributors

iparsrc avatar

Stargazers

 avatar Ali Asgari avatar Ghader Salehi avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.