Take an 'If' statement, for example in PB4 it looks like this (as if you guys don't know

Code: Select all
;PB4
If a=b
Debug 1
Elseif a>b
Debug 2
Else
Debug 3
Endif
Code: Select all
;PB4 w/Islington
If a=b
{
Debug 1
}
Elseif a>b
{
Debug 2
}
Else{ ;This format is also valid
Debug 3}
Islington also introduces a slightly different syntax for procedures as well:
Code: Select all
long Main(Arg.l)
{
}
Code: Select all
Procedure.l Main(Arg.l)
EndProcedure
I'm not sure of any automatic way to set up tools, but just download Islington.exe, fire up PB then:
Tools > Configure Tools > New
Commandline = Full Islington.exe path
Arguments = "%COMPILEFILE"
Event to trigger tool = Before Compile/Run
Wait untill tool quits = Ticked
Download!