top of page
Tern Systems Logo (with text)(with slogan)(transparent background).png
Image by Richard Horvath

G

"Hello, World!"

Image by Richard Horvath

46 instructions in operation
99 more instructions in future releases

Additional library macros arriving in winter 2024

G stands for Gamma, which is the third letter of the Greek alphabet and serves as a reference to the three valued nature of its operating BTMC

Image by willow xk

Dozens of ternary unique instructions

We know new can be scary...

Image by Andrew Kliatskyi

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;

...

Image by Andrew Kliatskyi

example code

...

      }

      else {

            if(b > c) res = b;

            else res = c;

      }

}

...that's why we based G off C

Image by Sean Oulashin

Code Different

All Ways

bottom of page