diff options
author | Andrew Ryan Davis <AndrewDavis1191@gmail.com> | 2020-08-15 20:05:08 -0700 |
---|---|---|
committer | Andrew Ryan Davis <AndrewDavis1191@gmail.com> | 2020-08-20 12:30:32 -0700 |
commit | 8df9aa061f3cd63f868ceb34bae2e4e8b53ed3af (patch) | |
tree | 70c8f9b96877bb7bd967510f441b19bf872ecf0e /powershell.html.markdown | |
parent | 11db56b81cf860ce161d148e82f606e70406ebf4 (diff) |
Removing duped section
There was a duplicate section
Diffstat (limited to 'powershell.html.markdown')
-rw-r--r-- | powershell.html.markdown | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/powershell.html.markdown b/powershell.html.markdown index 99f5de97..2777820a 100644 --- a/powershell.html.markdown +++ b/powershell.html.markdown @@ -19,27 +19,8 @@ rather than plain text. After years of evolving, it resembles Python a bit. [Read more here.](https://docs.microsoft.com/powershell/scripting/overview) Powershell as a Language: -```powershell - -# Single line comments start with a number symbol. -<# - Multi-line comments - like so -#> - -#################################################### -## 1. Primitive Datatypes and Operators -#################################################### - -# Numbers -3 # => 3 - -# Math -1 + 1 # => 2 -8 - 1 # => 7 -10 * 2 # => 20 -35 / 5 # => 7.0 +```powershell # Single line comments start with a number symbol. |