yulang programming language embedded in Python
Project description
Yu Language - yulang
A toy project for creating a simple programming language using Bison and Flex in C++. This is the wrapper to Python.
interactive console
$ python
>>> import yulang
>>> yulang.console()
Yu Language 0.0.1 (unstable, Oct 23 2021, 21:31:19)
interactive:
y> var a = 3;
y> print(a);
print: 3
y> square a: {return a ^ 2;}
y> print(square(a : 10));
print: 100
y>
parsing Python string
$ python
>>> import yulang
>>> yulang.parse("var a = 10; print(a);")
print: 10
examples
arithmetic
source codes:
print(10 + 30);
print(10 - 30);
print(10. / 30.);
print(10 * 30);
print(30 % 9);
print((5. + 5.) / 3.);
output:
$ python
>>> import yulang
>>> yulang.read("path/to/arithmetics.yu")
print: 40
print: -20
print: 0.333333
print: 300
print: 3
print: 3.33333
string
source codes:
var a = "hello world";
print(a);
$ python
>>> import yulang
>>> yulang.read("path/to/strings.yu")
print: hello world
functions
source codes: (// is used for comments)
// create a square function
square p, l:
{
var L = p * l;
return L;
}
// using the square function in a volume function
volume t:
{
var V = square(p : 5, l : 6) * t;
return V;
}
// assigning volume return in myVol variable
var myVol = volume(4);
print(myVol);
output:
$ python
>>> import yulang
>>> yulang.read("path/to/functions.yu")
print: 120
variables
source codes: (var is used for generating variables)
// defining variables
var a, b, c, d;
a = 10; // integer
b = .5; // float
c = 3.; // float
d = 3.14; // float
print(a);
print(b);
print(c);
print(d);
output:
$ python
>>> import yulang
>>> yulang.read("path/to/variables.yu")
print: 10
print: 0.5
print: 3
print: 3.14
import files
source codes in includes.yu
multiply a, b:
{
return a * b;
}
source codes in multi_files.yu
// relative to current directory of terminal (or shell)
// you can import multiple relative paths and they do not create errors
import: "tests/stable/multi_files/includes.yu"
import: "stable/multi_files/includes.yu"
import: "multi_files/includes.yu"
var c = multiply(a : 10, b : 20);
print(c);
output:
$ python
>>> import yulang
>>> yulang.read("path/to/multi_files.yu")
print: 200
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yulang-0.0.2.tar.gz.
File metadata
- Download URL: yulang-0.0.2.tar.gz
- Upload date:
- Size: 916.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac58e7d4d3a91451ad00bafa24f699ef77350e3721eb96db98a07178864e31d5
|
|
| MD5 |
a50b6a239593388f5c77459fdc924e0c
|
|
| BLAKE2b-256 |
93ef45eb29a69d6925e08aae17205af2f70dc0a24ca9e4a9d0151774aa22b6ce
|
File details
Details for the file yulang-0.0.2-py38-none-win_amd64.whl.
File metadata
- Download URL: yulang-0.0.2-py38-none-win_amd64.whl
- Upload date:
- Size: 919.0 kB
- Tags: Python 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12c496e24cd2c4a1d34921107486d1bdcb805a2eb4c95334e0e1db0cfb039897
|
|
| MD5 |
2ee3dbd33203a5d24f0bab9715505e32
|
|
| BLAKE2b-256 |
f3816f88b32b0ebd75cb5a1ee9446b4e808c6831d1d00840ccdb88e4ff6abe31
|