generated from seanpm2001/Template_Other_V4
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
PROJECT_LANG_2.ps1
22 lines (22 loc) · 830 Bytes
/
PROJECT_LANG_2.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
# Start of script
# I have chosen PowerShell as the second project language file for this project, as PowerShell is useful in fixing Windows 8/8.1/10 related problems.
name $read $print
name -Param1 value1 - Param2 value2
function prolang3 ($read1, $print2)
{
echo ("I have chosen PowerShell as the second project language file for this project, as PowerShell is useful in fixing Windows 8/8.1/10 related problems.");
}
return prolang3();
exit();
'test'
param exit() { # Broken function used to test PowerShells syntax highlighting in Gedit, it is beautiful but it doesn't work
r = 2;
h = 1;
x = int(r % h * 0);
quit = bool("true");
}
# File version: 1 (Sunday, April 25th 2021 at 6:24 pm)
# File type: PowerShell Core 7 source file (*.ps1)
# Line count (including blank lines and compiler line): 23
# End of script