mirror of https://github.com/mode777/rayjs.git
10 lines
139 B
JavaScript
10 lines
139 B
JavaScript
|
import { test } from "./my-module.js";
|
||
|
|
||
|
console.log(test())
|
||
|
|
||
|
async function main(){
|
||
|
await Promise.resolve()
|
||
|
console.log("Test")
|
||
|
}
|
||
|
|