Skip to content
This repository was archived by the owner on May 28, 2026. It is now read-only.

Repository files navigation

R# - RSX-R

A compiled statically typed multi paradigm general purpose programming language designed for cross platform applications.

RSX Logo

R# Logo

RSX Icon

R# Icon

Requirements

  • Python 3.10 or higher

Getting Started

How to install

Windows (Installs the RSX-R python library)

.\install.bat

Linux (Installs the RSX-R python library)

./install.sh

Examples

Hello, World!

include "rsxrio" : *;
// using namespace std;intmain() {
std::rout("Hello, World!", std::endl());
return0;
}

Factorial and Fibonacci

include "rsxrio" : *;
intfactorial(int n) {
if (n == 1) return n;
returnfactorial(n - 1) * n;
}
intfibonacci(int n) {
if (n <= 1) return n;
returnfibonacci(n - 1) + fibonacci(n - 2);
}
intmain() {
int n;
n = 5; printf("factorial(%d) = %d\n", n, factorial(n));
n = 8; printf("fibonacci(%d) = %d\n", n, fibonacci(n));
return0;
}

Libraries

  • rsxrio
  • rsxrmath
  • rsxrglfw
  • rsxrgl
  • rsxr-rvr

About

A compiled statically typed multi paradigm general purpose programming language designed for cross platform applications.

Topics

Resources

Stars

5 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages