mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
13 lines
216 B
Go
13 lines
216 B
Go
// 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()
|
|
}
|