Data update
This commit is contained in:
parent
ed705008a8
commit
0df55f9f24
2196 changed files with 32999 additions and 3075 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/* soap.wren */
|
||||
/* SOAP.wren */
|
||||
|
||||
var CURLOPT_URL = 10002
|
||||
var CURLOPT_POST = 47
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
/* gcc SOAP.c -o SOAP -lcurl -lwren -lm */
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
|
@ -173,7 +175,7 @@ int main(int argc, char **argv) {
|
|||
config.bindForeignMethodFn = &bindForeignMethod;
|
||||
WrenVM* vm = wrenNewVM(&config);
|
||||
const char* module = "main";
|
||||
const char* fileName = "soap.wren";
|
||||
const char* fileName = "SOAP.wren";
|
||||
char *script = readFile(fileName);
|
||||
WrenInterpretResult result = wrenInterpret(vm, module, script);
|
||||
switch (result) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue