blob: 107c5a6e6bea40a115d8b61dd2a97dc3ee27aa12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
defpopup (test)
{
item(Say "$0 ($1)" , 0)echo $0 ($1)
separator
popup(Popup)
{
item(Say "$0" twice)
{
echo $0 (1)
echo $0 (2)
}
}
}
echo "Use '/popup test <parameter>' to test the popup"
|