Questions tagged [gravity-language]

For questions relating to the Gravity Language

Gravity is a "an embeddable programming 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…