flst / upstream /emscripten /test /other /embind_tsgen_constant_only.cpp
arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
157 Bytes
#include <emscripten/bind.h>
using namespace emscripten;
int SOME_CONSTANT = 15;
EMSCRIPTEN_BINDINGS(Foo) {
constant("SOME_CONSTANT", SOME_CONSTANT);
}