9 lines
183 B
TypeScript
9 lines
183 B
TypeScript
import { PythagorasClient } from "./pythagoras_client";
|
|
|
|
async function main(): Promise<void> {
|
|
const conn = new PythagorasClient("/ws");
|
|
console.log(await conn.recv());
|
|
}
|
|
|
|
main();
|