1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 04:52:26 -05:00

Modify the printing statement to avoid the error

This commit is contained in:
MohammadSu1 2024-11-09 17:58:20 +02:00
parent 52d0cabd9b
commit 5da2a52ec2

View file

@ -1,3 +1,3 @@
import * as a from "./a.cts";
console.log(a.add(1, 2));
await Deno.stdout.write(new TextEncoder().encode(a.add(1, 2)));