Start:
MikeSouth to Nathan: you got less employees.
Nathan to South: no, we fire 40 we hire 140
MikeSouth to Nathan: you got less traffic on tubes
...
goto start
topics about other companies # this code is never reached
-------------------
alternative version:
while(true) { // endless loop (until break keyword encountered)
MikeSouth to Nathan: you got less employees.
Nathan to South: no, we fire 40 we hire 140
MikeSouth to Nathan: you got less traffic on tubes
... (no break keywords here)
}
topics about other companies // this code is never reached
|