Hi, am I correct in assuming that the variables arg0, arg1, and so on can only appear in expressions?
In other words, this is ok
x - arg0 2
but this is not ok
arg0 - 2
function process arg1
do something
Thank you
Hi, I have the following questions about the project
1. Can we assume that a function must always have at least one statement in its body so if a function has no body (i.e. no indented statements) we should report this as an error?
2. If there are mor...
In the Lecture 8 slides, it says that there is only ever a single process in the running state. Am I correct in saying that this is only the case when the computer has only one CPU with one core? Because if the CPU has multiple cores, then each core ...