top of page

G
"Hello, World!"

46 instructions in operation
99 more instructions in future releases
Additional library macros arriving in winter 2024

Dozens of ternary unique instructions
We know new can be scary...

example code
#include <stdio.h>
int main() {
int a = 100, b = 2000, c = 1000;
int res;
if(a > b) {
if(a > c) {
res = a;
}
else res = c;
...

example code
...
}
else {
if(b > c) res = b;
else res = c;
}
}
...that's why we based G off C

Code Different
All Ways
bottom of page