UNPKG

153 BJavaScriptView Raw
1class Dog {
2 constructor() {
3 }
4 update() {
5 }
6}
7
8import * as math from "./math";
9alert("2π = " + math.sum(math.pi, math.pi));
10
11module.exports = Dog
\No newline at end of file