update highlighted test file

This commit is contained in:
Jan T. Sott 2023-05-30 23:57:40 +02:00 committed by Martin Nordholts
parent f1d6cc7a64
commit 34440f1b0c
1 changed files with 48 additions and 48 deletions

View File

@ -1,61 +1,61 @@
/*
 * Multi-line
 * Comment
 */
[38;2;117;113;94/*
[38;2;117;113;94 * Multi-line
[38;2;117;113;94 * Comment
[38;2;117;113;94 */
# Single-line comment
; Another-single line comment
# Single-line comment
; Another-single line comment
; Includes
!include "LogicLib.nsh"
; Includes
!include "LogicLib.nsh"
; Defines
!define ARCHITECTURE "x64"
; Defines
!define ARCHITECTURE "x64"
; Compile time command
!echo "Building ${ARCHITECTURE} script"
; Compile time command
!echo "Building ${ARCHITECTURE} script"
; Macro definition
!macro SayHello name
 !ifdef name
 !echo "Hello, ${name}"
 !else
 !echo "Hello, world"
 !endif
!macroend
; Macro definition
!macro SayHello name
 !ifdef name
 !echo "Hello, ${name}"
 !else
 !echo "Hello, world"
 !endif
!macroend
; Macro usage
!insertmacro SayHello "John Doe"
; Macro usage
!insertmacro SayHello "John Doe"
; Settings
Name "installer_name"
OutFile "installer_name.exe"
RequestExecutionLevel user
CRCCheck on
Unicode true
; Settings
Name "installer_name"
OutFile "installer_name.exe"
RequestExecutionLevel user
CRCCheck on
Unicode true
!ifdef ${ARCHITECTURE}
 InstallDir "$PROGRAMFILES64\installer_name"
!else
 InstallDir "$PROGRAMFILES\installer_name"
!endif
!ifdef ${ARCHITECTURE}
 InstallDir "$PROGRAMFILES64\installer_name"
!else
 InstallDir "$PROGRAMFILES\installer_name"
!endif
; Pages
Page components
Page instfiles
; Pages
Page components
Page instfiles
; Functions
Function PrintTestStrings
 DetailPrint "The install button reads $(^InstallBtn)"
 DetailPrint 'Here comes a$\n$\rline-break!'
 DetailPrint `Escape the dollar-sign: $$`
FunctionEnd
; Functions
Function PrintTestStrings
 DetailPrint "The install button reads $(^InstallBtn)"
 DetailPrint 'Here comes a$\n$\rline-break!'
 DetailPrint `Escape the dollar-sign: $$`
FunctionEnd
; Sections
Section "section_name" section_index
 Call PrintTestStrings 
; Sections
Section "section_name" section_index
 Call PrintTestStrings 
 ; NSIS plugin call
 nsExec::ExecToLog "calc.exe"
SectionEnd
 ; NSIS plugin call
 nsExec::ExecToLog "calc.exe"
SectionEnd