For questions relating to the Gravity Language
Questions tagged [gravity-language]
1 questions
5
votes
1 answer
Translating a Gravity (a scripting language) call to a native C function call
I am currently looking into implementing a cleaner way to call native C functions from the Gravity scripting language.
So far, the most simplistic example would be this one:
int add(int lhs, int rhs) {
return lhs + rhs;
}
static void…

Ingwie Phoenix
- 2,703
- 2
- 24
- 33