mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
17 lines
401 B
C++
17 lines
401 B
C++
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
|
|
// All rights reserved. MIT License.
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
|
|
#include "include/deno.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
deno::v8_init();
|
|
|
|
deno::Deno* d = deno::from_snapshot(NULL, NULL);
|
|
int r = deno::deno_load(d, "main2.js", "foo();");
|
|
if (r != 0) {
|
|
printf("Error! %s\n", deno::deno_last_exception(d));
|
|
exit(1);
|
|
}
|
|
}
|