From 10898ef14456c9152672aaef1f11698d6068f2ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Tue, 15 Oct 2024 00:05:49 +0300 Subject: [PATCH] Update 3-how-to-run-a-program.mdx Seems the A argument got lost in example? --- src/content/chapters/3-how-to-run-a-program.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/chapters/3-how-to-run-a-program.mdx b/src/content/chapters/3-how-to-run-a-program.mdx index b66fda9..0e77281 100644 --- a/src/content/chapters/3-how-to-run-a-program.mdx +++ b/src/content/chapters/3-how-to-run-a-program.mdx @@ -237,7 +237,7 @@ The modified `argv` finally passed to the Node interpreter will be: ```c -[ "/usr/bin/node", "--experimental-module", "./script", "B", "C" ] +[ "/usr/bin/node", "--experimental-module", "./script", "A", "B", "C" ] ```