1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 12:00:34 +02:00

Fix backtick that was messing up syntax highlighting on powershell.

This commit is contained in:
Samantha McVey
2016-11-23 09:43:37 -08:00
parent c518beae09
commit 152fddbd92

View File

@@ -74,7 +74,7 @@ $aHashtable = @{name1='val1'; name2='val2'}
# Using variables:
echo $aString
echo "Interpolation: $aString"
echo "`$aString has length of $($aString.Length)"
echo "$aString has length of $($aString.Length)"
echo '$aString'
echo @"
This is a Here-String