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 +} +``` +