Created
February 8, 2019 19:31
-
-
Save jakobii/b0394ca5c1e98f7349f86459ac84390c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $SomeFunction = { | |
| param( | |
| [string]$Name | |
| ) | |
| return 'Hi ' + $Name + '!' | |
| } | |
| $Somefunction.Invoke("Jacob") | |
| # Hi Jacob! | |
| $Somefunction | Get-Member | |
| # TypeName: System.Management.Automation.ScriptBlock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment