From 01ffd6566c68b8a26f63beaa0fef4af56b999d7a Mon Sep 17 00:00:00 2001 From: webertk421 <32755095+webertk421@users.noreply.github.com> Date: Thu, 11 Feb 2021 17:56:13 -0500 Subject: [PATCH] I followed the quick fix link from VS Code and was prompted to Create a new page. --- SC2113.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 SC2113.md diff --git a/SC2113.md b/SC2113.md new file mode 100644 index 0000000..7eef439 --- /dev/null +++ b/SC2113.md @@ -0,0 +1,16 @@ +Instead of + +``` sh +function quit { + exit +} +``` + +...add the parenthesis to the function name and remove the word "function": + +``` sh +quit() { + exit +} +``` +