You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ A utility and CGI program which translates AQA's GCSE pseudocode specification (
6
6
7
7
Prerequisites:
8
8
9
-
* Visual Studio 2019 (or 2022) with C++ compiler supporting `/std:c++20`
9
+
* Visual Studio 2019 or 2022 with C++ compiler supporting `/std:c++20`
10
10
11
11
* Both `win_flex.exe` and `win_bison.exe` from https://github.com/lexxmark/winflexbison
12
12
@@ -78,7 +78,7 @@ Windows needs Internet Information Services (IIS) Manager to be enabled and set
78
78
79
79
Note that inputs to the running program have to be entered into the text field bottom-right **before** the program is run, these being separated by commas. Also the user is prompted to clear the output window when it is full. These are the only significant differences to running the Javascript in a console window.

82
82
83
83
## License
84
84
@@ -98,7 +98,6 @@ Note that the only deliberate changes from the specification are:
98
98
99
99
*`SUBROUTINE` parameters in a definition needing to be followed by `: Type` (as for `RECORD` fields), but not where the `SUBROUTINE` is called with arguments.
100
100
101
-
*Initiializing a variable from a `RECORD` type needs curly braces `{` and `}` and not plain parentheses, this is due to the earlier design of the compiler which means it cannot otherwise distinguish from a `SUBROUTINE` call (with the name of the `RECORD`)
101
+
*Initializing a variable from a `RECORD` type needs curly braces `{` and `}` and not plain parentheses, this is due to the earlier design of the compiler which means it cannot otherwise distinguish from a `SUBROUTINE` call (with the name of the `RECORD`)
102
102
103
-
104
-
**Update:** Compound assignment of variables from `RECORD`s (in addition to field assignment) now appears in the specification above, as does `OUTPUT`ing of a comma-separated list of `StringExp`s. Support for both of these is provided.
103
+
**Update:** Compound assignment of variables from `RECORD`s (in addition to field assignment) now appears in the specification above, as does `OUTPUT`ting of a comma-separated list of `StringExp`s. Support for both of these is provided.
0 commit comments