aboutsummaryrefslogtreecommitdiff
path: root/samples/PowerShell/hello.psm1
diff options
context:
space:
mode:
Diffstat (limited to 'samples/PowerShell/hello.psm1')
-rw-r--r--samples/PowerShell/hello.psm15
1 files changed, 5 insertions, 0 deletions
diff --git a/samples/PowerShell/hello.psm1 b/samples/PowerShell/hello.psm1
new file mode 100644
index 0000000..3db82f0
--- /dev/null
+++ b/samples/PowerShell/hello.psm1
@@ -0,0 +1,5 @@
+# Hello World powershell module
+
+function hello() {
+ Write-Host 'Hello World'
+} \ No newline at end of file