Pazle Programming Language

An easy object oriented intrepreted programming language with modern features like dynamic and weak typing yet providing a robustic architecture with very many modules to accomplish almost all the developer's wishes in his / her application.

Install pazle

Functions usage

Just like any other language, functions take arguments and should return some data when executed.

import math // finabocci sequence def finabocci(limit) { nums = [0, 1] left = 0; right = 1; sum = 0 + 1; while sum < limit { nums.append(sum) left = right; right = sum sum = left + right } return nums; } print(finabocci(1000)) // >>> [0,1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987]

1

2

3

4

Pazle-lang dev team is actively developing the program and if you want
to contact the team checkout our whatsapp or telegram.

Easy To Learn

It is very easy for an experienced developer to learn and for beginners I now think this is my best recommendation.

Reliable

Pazle's standard library is filled with low level modules to develop on robustic applications of any kind and platform.

Cross Platform

This interpreter if installed on any platform mac or windows it can run the same code without any update or requirements.

Team view

As the development team we look forward for the language to meet the community's needs and upgrade it although it has issues now.