We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The user starts the utility with the following parameters:
qsp-toolbox inline-statements game.qsps
And the program counting the number of statements per line in all game.
The calculation goes like this:
For example, the following line is given:
a = 4 & if 4 = 1: test
Counts as 3 statements:
a = 4
if ... : ...
test
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Solution
The user starts the utility with the following parameters:
And the program counting the number of statements per line in all game.
The calculation goes like this:
For example, the following line is given:
Counts as 3 statements:
a = 4
if ... : ...
test
The text was updated successfully, but these errors were encountered: