| OLD | NEW |
| 1 Starting session. Type 'help' for a list of commands. | 1 Starting session. Type 'help' for a list of commands. |
| 2 | 2 |
| 3 > t verbose | 3 > t verbose |
| 4 ### verbose printing set to: false | 4 ### verbose printing set to: false |
| 5 > b main | 5 > b main |
| 6 ### set breakpoint id: '0' method: 'main' bytecode index: '0' | 6 ### set breakpoint id: '0' method: 'main' bytecode index: '0' |
| 7 > r | 7 > r |
| 8 main @32 | 8 main @32 |
| 9 > s | 9 > s |
| 10 main @x | 10 main @x |
| 11 > s | 11 > s |
| 12 main @42 | 12 main @42 |
| 13 > s | 13 > s |
| 14 main @y | 14 main @y |
| 15 > s | 15 > s |
| 16 main @foo(y) | 16 main @foo(y) |
| 17 > s | 17 > s |
| 18 foo @x | 18 foo @x |
| 19 > s | 19 > s |
| 20 foo @=> x; | 20 foo @=> x; |
| 21 > s | 21 > s |
| 22 main @foo(y) | 22 main @foo(y) |
| 23 > s | 23 > s |
| 24 ### process terminated | 24 ### process terminated |
| 25 > s |
| 26 ### process not running, cannot step to next expression |
| 27 > s |
| 28 ### process not running, cannot step to next expression |
| 29 > q |
| OLD | NEW |