diff --git a/guidelines.md b/guidelines.md index 78e7555..38ee95a 100644 --- a/guidelines.md +++ b/guidelines.md @@ -6,13 +6,14 @@ This guide will follow the recommended programming style for scoop, but you are # Indentation -Just a single tab when opening blocks is fine +Just a single tab (Or 4 spaces) when opening blocks is fine
Example:
-`"if >= 0"` -
`" if <= 3"` -
`" show"` -
`"endif"` -
Note: do not write the double quotes, it's to maintain format, since Markdown doesn't let me put more than one space, for some reason +``` +if >= 0 + if <= 3 + show +endif +``` # Printing messages in the screen