From 74b3406190dbd3ebdeb8c3b0b0f51ddff77c7819 Mon Sep 17 00:00:00 2001 From: Marijn Doeve Date: Sat, 4 Dec 2021 13:58:53 +0100 Subject: [PATCH] Dollar shell --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 607befc..453be8b 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,11 @@ Expect hacky code that is not representative of my average code quality. Python solutions take input from `stdin`, so run like this: ```shell -cat input1.in | python3 3.py +$ cat input1.in | python3 3.py ``` Swift solutions take the filename as the first argument. ```shell -swift ./AoC1/main.swift input1.in +$ swift ./AoC1/main.swift input1.in ```