First page Back Continue Last page Summary Graphics
Syntax: statements
Expressions vs statements
- a statement is like a procedure, it doesn't return any value
- i=0 being a statement disallows: j=(i=0), if (i=0) ...
- ML enforces via types what Python does via syntax
Notes: