mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
14 lines
216 B
Go
14 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()
|
||
|
}
|