Once I have asked a question if it possible using goto command in SCAR and the answer was no.
So now I know it possible. The syntaxes looks like that:
program goto_test;
label making_label;begin
making_label: WriteLn('Hello');
Count := 1;
wait(2000);
goto making_label;end.
so as you can see the command is declaring a parameter and then using goto to jump to it without any statements like it always work with repeat - until commands.
Enjoy