Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lantip/sawa
sawa (ꦱꦮ) is an open source programming language, an interpreter to be precise, where you can write python code using javanese character.
https://github.com/lantip/sawa
Last synced: 6 days ago
JSON representation
sawa (ꦱꦮ) is an open source programming language, an interpreter to be precise, where you can write python code using javanese character.
- Host: GitHub
- URL: https://github.com/lantip/sawa
- Owner: lantip
- License: other
- Created: 2021-06-05T03:39:35.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-14T16:03:24.000Z (6 months ago)
- Last Synced: 2024-11-06T23:12:15.276Z (7 days ago)
- Language: Python
- Size: 459 KB
- Stars: 343
- Watchers: 6
- Forks: 26
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
- made-in-indonesia - Sawa - `sawa (ꦱꦮ) is an open source programming language, an interpreter to be precise, where you can write python code using javanese character.` *by [Rony Lantip](https://github.com/lantip)* (S)
- awesome-made-by-indonesian - Sawa - `sawa (ꦱꦮ) is an open source programming language, an interpreter to be precise, where you can write python code using javanese character.` *by [Rony Lantip](https://github.com/lantip)* (S)
README
![SAWA](icons/sawa_logo.png "Sawa")
# ꦱꦮ**_sawa (ꦱꦮ)_** is an open source programming language, an interpreter to be precise, where you can write Python code using Javanese character.
_sawa_ iku arané program iki sing ndadèkaké awakmu bisa kodhing Python nganggo aksara Jawa.
- **Hello world**
```python
ꦥꦿꦶꦤ꧀("ꦱꦸꦒꦼꦁꦫꦮꦸꦃ")
```
Output:
```bash
ꦲꦸꦒꦼꦁꦫꦮꦸꦃ
```- **Condition**
```python
ꦲ = ꧗
ꦪꦺꦤ꧀ ꧗ == ꧐:
ꦥꦿꦶꦤ꧀("ꦲ ꦏꦺꦴꦱꦺꦴꦁ")
ꦲꦸꦠꦮꦭꦶꦪꦤꦺ ꦲ%2 == ꧐:
ꦥꦿꦶꦤ꧀("ꦲ ꦒꦤꦼꦥ꧀")
ꦭꦶꦪꦤꦺ:
ꦥꦿꦶꦤ꧀("ꦲ ꦒꦚ꧀ꦗꦶꦭ꧀")
```
Output:
```bash
ꦲ ꦒꦚ꧀ꦗꦶꦭ꧀
```- **Function**
```python
ꦥ꦳ꦸꦁꦱꦶ ꦠꦩ꧀ꦧꦃ(ꦲ,ꦧ):
ꦕ = ꦲ + ꦧ
ꦧꦭꦶꦏ꧀ ꦕꦥꦿꦶꦤ꧀("ꦒꦸꦁꦒꦸꦁ = ", ꦠꦩ꧀ꦧꦃ(꧓,꧖))
```
Output:
```bash
ꦒꦸꦁꦒꦸꦁ = ꧙
```- **Importing**
You may import Python package an rename it as Javanese name. For example:
```python
ꦗꦸꦥꦸꦏ꧀ pandas ꦢꦢꦶ ꦥꦢ
ꦗꦸꦥꦸꦏ꧀ numpy ꦢꦢꦶ ꦤꦥꦢꦉ = ꦥꦢ.read_csv('/location/of/csv/file.csv')
ꦢꦉ.head()
```
## Prerequisites
- Mac OS, Linux, Windows
- Python 3***NOTE: Windows is still _untested_. Please use `pip` version, and let me know if it's not working.***
## Getting Started
### Installation### Build from scratch (for Mac OS and Linux)
> **PLEASE NOTE: You need root access for Linux operating system.**
- Clone this repo:
```bash
git clone https://github.com/lantip/sawa.git
cd sawa
```
- Run install.sh:
```bash
./install.sh
```- Or run Makefile:
```bash
make install
```### Uninstall
- Run uninstall.sh
```bash
./uninstall.sh
```
### Using `pip` (For all OS)
- Run Pip install:
```bash
pip install sawa
```***NOTE: WINDOWS user***
Install this package on `virtualenv`.```bash
C:>python -m venv C:\Users\\venvC:>C:\Users\\venv\Scripts\activate.bat
(venv)C:>pip install sawa
```and you're good to go.
## Running
- Create a new file with name `ꦲꦭꦮ.ꦱꦮ` and open in any editor.
- Write this in the file
```vim
ꦥꦿꦶꦤ꧀("ꦱꦸꦒꦼꦁꦱꦶꦪꦁ")
```- Save it
- Open a terminal and go to the folder where file is saved
- Run this command
```bash
ꦱꦮ ꦲꦭꦮ.ꦱꦮ
```- It will print
```bash
ꦱꦸꦒꦼꦁꦱꦶꦪꦁ
```## Contributing
You are most welcome to contribute for sawa.
For guidelines see CONTRIBUTING.mdTo get started take a fork of this repository and clone it.
## Credits
This interpreter is build heavily based on [YaLang](https://github.com/yalang) skeleton. Thank you!