home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Resources
/
System
/
BoingBag1
/
Contributions
/
InstallerNG
/
examples
/
stringformat.installer
< prev
next >
Wrap
Text File
|
1999-10-15
|
372b
|
21 lines
(user expert)
(set @proceed-button "Really cool..."
@abort-button "This sucks !"
)
; demonstration of the string format function
(set text1 ("%s %s %s" ("Hello")
(" Wo%s" ("%sld " "r"))
"!"
)
)
(set text2 ("\n\nsome math: %ld * %ld = %ld" 30 40 (* 30 40)))
(exit ("%s%s" text1 text2) (quiet))
(welcome)