The Wayback Machine - http://web.archive.org/web/20200611003900/https://github.com/topics/indentation
Skip to content
#

indentation

Here are 111 public repositories matching this topic...

adonchey
adonchey commented May 16, 2019

$test = @{ "First Name" = "Bob"; "Last Name" = "Smith" }
Write-Host "First Name : " $test."First Name"
Write-Host "Last Name : " $test."Last Name"

gets changed to

$test = @{ "First Name" = "Bob"; "Last Name" = "Smith" }
Write-Host "First Name : " $test. "First Name"
Write-Host "Last Name : " $test. "Last Name"

it puts a space between $test. and "First Name"/"Last Name".

Improve this page

Add a description, image, and links to the indentation topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the indentation topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.