Skip to main content
Module

x/cliffy/examples/prompt/list.ts

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
File
#!/usr/bin/env -S deno run --unstable
import { List } from "../../prompt/list.ts";
const keywords: string[] = await List.prompt("Enter some keywords");
console.log({ keywords });