Last active
September 9, 2017 00:16
-
-
Save turboBasic/3e0e2ee2a972be65a22c8e11efbd365a to your computer and use it in GitHub Desktop.
[Get-DataSectionExamples] in Powershell - short summary #powershell
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
DATA msgs { ConvertFrom-StringData @' | |
Err01 = Attention! | |
Err02 = File not found! | |
'@ | |
} | |
DATA exportVariables { | |
'variableName1' | |
'variableName2' | |
} | |
DATA info { | |
@(1, 2, "text") | |
@{ a = 0x1; b = "great"; c ="script" } | |
} | |
$exportVariables | ConvertTo-JSON | |
$info | ConvertTo-JSON |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment