mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
364 B
16 lines
364 B
/*===
|
|
Hello world!
|
|
return value is: 123.000000
|
|
result is: 'TESTSTRING'
|
|
===*/
|
|
|
|
void test(duk_context *ctx) {
|
|
duk_eval_string(ctx, "print('Hello world!'); 123;");
|
|
printf("return value is: %lf\n", duk_get_number(ctx, -1));
|
|
duk_pop(ctx);
|
|
|
|
duk_eval_string(ctx, "'testString'.toUpperCase()");
|
|
printf("result is: '%s'\n", duk_get_string(ctx, -1));
|
|
duk_pop(ctx);
|
|
}
|
|
|
|
|