Skip to main content
GameDev.net gamedev.net

PRO Tired of ads? Read GameDev.net ad-free and help keep the community independent with GameDev Pro — $3/month.

VividScript making progress.

VividScript making progress.

AntRWells
AntRWells
AntRWells · · 1 min read
2,914 0

It now has IF/FOR/WHILE/Assignments , the following code works fine.


func Entry(int ant)

    loop = 25+26;

    while(loop>0)
    
        loop = loop - 1;

        v = 0;

        for(v=0;v<5;v=v+1)

            if(v>2)
            
                printf(loop);

            end

        end

    end

end 


Discussion

Loading comments...