blob: 585cd1259544c38ea9cca04678190f09fffa8753 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
// All rights reserved. MIT License.
package main
import (
"github.com/ry/deno"
)
func main() {
deno.Init()
deno.Eval("deno_main.js", "denoMain()")
deno.Loop()
}
|