Bob Nystrom 6c14050101 fix: remove VAL_NO_VALUE value type and replace with null object sentinel
The VAL_NO_VALUE enum variant and its associated NO_VAL macro were removed from the value type system. The NO_VAL sentinel is now represented as a VAL_OBJ with a NULL object pointer, eliminating the hacky "no value" type. Updated the interpret function's primitive call return check to detect this new sentinel by verifying both the type is VAL_OBJ and the object pointer is NULL, rather than checking for the removed VAL_NO_VALUE type. Removed the TODO(bob) comments referencing the hack.
2013-11-16 19:54:42 +00:00
S
Description
Highly customized version of the wren programming language. It has all the modules that you would expect in a std library including http, websockets, sqlite3 and jinja-like templating engine. The idea is to make it suitable for web development.
22 MiB
Languages
HTML 50%
C 22.2%
PHP 13.4%
C++ 6%
Makefile 2.9%
Other 5.5%