Skip to main content
Module

x/cliffy/examples/prompt/number.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 { Number } from "../../prompt/number.ts";
const age: number = await Number.prompt("How old are you?");
console.log({ age });