1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-10 08:09:06 -05:00
denoland-deno/deno2/main.cc

19 lines
395 B
C++
Raw Normal View History

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