From af105a4583522bb1c329c709dc3a8cc1896e3a45 Mon Sep 17 00:00:00 2001 From: Joe Atzberger Date: Wed, 27 Feb 2019 19:17:38 -0500 Subject: [PATCH] identify python code block for syntax highlighting --- SC2089.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2089.md b/SC2089.md index e326d4b..0ce32b0 100644 --- a/SC2089.md +++ b/SC2089.md @@ -18,7 +18,7 @@ ls "${args[@]}" Bash does not interpret data as code. Consider almost any other languages, such as Python: -```sh +```python print 1+1 # prints 2 a="1+1" print a # prints 1+1, not 2