Skip to main content
Module

x/inquirer/lib/utils/io.ts

Interactive command line user interfaces for deno
Latest
File
export async function print(s: string) { const text = new TextEncoder().encode(s); await Deno.write(Deno.stdout.rid, text);}