EDIT: Whoops, this should probably have been posted in the 'SCI How To' forum (or maybe put into the tutorials).
It would have been a show-stopper without 'goto' support for my current project if I hadn't stumbled on this example in the Studio help files under 'Inline Assembly':
(if(something)
(asm jmp _a_goto_label)
)
(asm _a_goto_label: )
I don't know why anyone would need this functionality under normal circumstances, but I certainly did (code conversion from Inform-ish to SCI). Hope it helps someone out in the future.