2018-06-10 00:32:04 +02:00
|
|
|
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
|
|
|
|
// All rights reserved. MIT License.
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2018-06-10 04:55:31 +02:00
|
|
|
#include "include/deno.h"
|
2018-06-10 00:32:04 +02:00
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
2018-06-10 14:18:15 +02:00
|
|
|
deno_init();
|
2018-06-10 00:32:04 +02:00
|
|
|
|
2018-06-10 14:18:15 +02:00
|
|
|
Deno* d = deno_new(NULL, NULL);
|
2018-06-11 22:29:34 +02:00
|
|
|
bool r = deno_execute(d, "deno_main.js", "denoMain();");
|
|
|
|
if (!r) {
|
2018-06-10 14:18:15 +02:00
|
|
|
printf("Error! %s\n", deno_last_exception(d));
|
2018-06-10 00:32:04 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
2018-06-11 22:36:14 +02:00
|
|
|
deno_delete(d);
|
2018-06-10 00:32:04 +02:00
|
|
|
}
|