mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-12 06:38:45 +01:00
This is just for the VM's own internal use, for resolving relative imports. Also added a tiny unit test framework for writing tests of low-level C functionality that isn't exposed directly by the language or VM.
10 lines
102 B
C
10 lines
102 B
C
#include "path_test.h"
|
|
#include "test.h"
|
|
|
|
int main()
|
|
{
|
|
testPath();
|
|
|
|
return showTestResults();
|
|
}
|