Skip to content

Instantly share code, notes, and snippets.

View garrettjoecox's full-sized avatar

Garrett Cox garrettjoecox

View GitHub Profile
@garrettjoecox
garrettjoecox / readlines.ts
Created December 18, 2023 00:50
readLines usage
import { readLines } from "https://deno.land/[email protected]/io/read_lines.ts";
(async function processStdin() {
try {
for await (const line of readLines(Deno.stdin)) {
const [command, ...args] = line.split(" ");
switch (command) {
default:
case "help": {