A compiled, statically-typed programming language with Python-style syntax, Rust-level performance, and full bilingual (English + Hausa) keyword support.
# tauraro-installer-termux
A compiled, statically-typed programming language with Python-style syntax, Rust-level performance, and full bilingual (English + Hausa) keyword support.
---
## Install Tauraro on Termux Android App
```python
curl -sSL
raw.githubusercontent.com | bash
```
Tauraro
Compiled · Statically Typed · Python Syntax · C Performance · Bilingual
Documentation
·
Examples
·
Releases
·
Issues
---
## What Is Tauraro?
Tauraro is a compiled, statically-typed language with Python-style indentation syntax. It compiles to C and then to native machine code via GCC or Clang — giving you Python's readability with performance close to hand-written C.
It is also the **first programming language with full bilingual keyword support** — every keyword has both an English and a Hausa equivalent. Programs can be written in either language, or mixed freely.
```python
# English
def greet(name: str) -> str:
return f"Hello, {name}!"
# Hausa
aiki gaisawa(suna: str) -> str:
dawo f"Sannu, {suna}!"
def main():
print(greet("world"))
buga(gaisawa("duniya"))
```
---
## Installation
Download the latest binary from the Releases page:
| Platform | File |
|----------|------|
| Windows (x64) | `tauraroc-windows-x64.zip` |
| Linux (x64) | `tauraroc-linux-x64.tar.gz` |
| macOS (x64/arm64) | `tauraroc-macos.tar.gz` |
Extract and place `tauraroc` (or `tauraroc.exe` on Windows) somewhere on your `PATH`.
**Requirement:** GCC or Clang must be installed. Tauraro compiles to C and uses the system C compiler to produce the final binary.
Verify your installation:
```sh
tauraroc --version
# tauraroc v0.0.3
```
---
## Quick Start
**hello.tr**
```python
def main():
print("Sannu duniya!") # Hello, world!
```
```sh
tauraroc --run hello.tr
```
---
## Language Features
| Feature | Description |
|---------|-------------|
| **Classes** | Method dispa …