├── Makefile ├── README.md ├── helloworld ├── index.php ├── ydb.c └── ydb.h /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micweaver/ydb/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micweaver/ydb/HEAD/README.md -------------------------------------------------------------------------------- /helloworld: -------------------------------------------------------------------------------- 1 | print "hello,world" 2 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micweaver/ydb/HEAD/index.php -------------------------------------------------------------------------------- /ydb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micweaver/ydb/HEAD/ydb.c -------------------------------------------------------------------------------- /ydb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micweaver/ydb/HEAD/ydb.h --------------------------------------------------------------------------------