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

18 lines
401 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-10 04:55:31 +02:00
#include "include/deno.h"
int main(int argc, char** argv) {
2018-06-10 02:24:34 +02:00
deno::v8_init();
deno::Deno* d = deno::from_snapshot(NULL, NULL);
2018-06-10 02:24:34 +02:00
int r = deno::deno_load(d, "main2.js", "foo();");
if (r != 0) {
2018-06-10 02:24:34 +02:00
printf("Error! %s\n", deno::deno_last_exception(d));
exit(1);
}
}