top of page
![Image by Richard Horvath](https://static.wixstatic.com/media/nsplsh_7536130dd6b14aa5b2c2098c2ca54f4e~mv2.jpg/v1/crop/x_0,y_363,w_5120,h_2024/fill/w_980,h_387,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/Image%20by%20Richard%20Horvath.jpg)
G
"Hello, World!"
![Image by Richard Horvath](https://static.wixstatic.com/media/nsplsh_d9250696eb304fefb56be4da35c361f9~mv2.jpg/v1/fill/w_980,h_551,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/Image%20by%20Richard%20Horvath.jpg)
46 instructions in operation
99 more instructions in future releases
Additional library macros arriving in winter 2024
![Image by willow xk](https://static.wixstatic.com/media/nsplsh_139279143a48461d83c686dadfc8f826~mv2.jpg/v1/fill/w_980,h_2120,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/Image%20by%20willow%20xk.jpg)
Dozens of ternary unique instructions
We know new can be scary...
![Image by Andrew Kliatskyi](https://static.wixstatic.com/media/nsplsh_339a48f63a114dd3aa821da98b676aa3~mv2.jpg/v1/fill/w_980,h_1742,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/Image%20by%20Andrew%20Kliatskyi.jpg)
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](https://static.wixstatic.com/media/nsplsh_6c4c7bc54f7e47888867beaf851acd21~mv2.jpg/v1/fill/w_980,h_1742,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/Image%20by%20Andrew%20Kliatskyi.jpg)
example code
...
}
else {
if(b > c) res = b;
else res = c;
}
}
...that's why we based G off C
![Image by Sean Oulashin](https://static.wixstatic.com/media/nsplsh_877f2aa7a3cd4f2f9f82289b5f08086c~mv2.jpg/v1/fill/w_980,h_651,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/Image%20by%20Sean%20Oulashin.jpg)
Code Different
All Ways
bottom of page