struct mystruct end; method f () var muh := 0x10; muh := muh * -2; /* test comment */ /* groeserer comemnt */ if (muh < -0x5) then muh := muh * -2; else muh := 0x55; end; while (muh < 10) do muh := muh * -2; end; /* warum geht das nciht? */ while (muh < 10) do muh := muh - 2; end; return muh; end;