kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

expected (694B)


      1 kit dbg — 'h' for help, 'q' to quit
      2 Breakpoint 1 at 0xADDR (@CASE@/main.toy:2)
      3 Breakpoint 1 (@CASE@/main.toy:2) hit at 0xADDR <main+0x80> at @CASE@/main.toy:2:16
      4      1   fn main(): i32 {
      5      2 >   let x: i64 = 10;
      6      3     let y: i64 = x + 32;
      7      4     return y as i32;
      8      5   }
      9 Single-step complete at 0xADDR <main+0x84> at @CASE@/main.toy:2:16
     10      1   fn main(): i32 {
     11      2 >   let x: i64 = 10;
     12      3     let y: i64 = x + 32;
     13      4     return y as i32;
     14      5   }
     15 Next complete at 0xADDR <main+0x88> at @CASE@/main.toy:3:20
     16      1   fn main(): i32 {
     17      2     let x: i64 = 10;
     18      3 >   let y: i64 = x + 32;
     19      4     return y as i32;
     20      5   }
     21 Program exited with code 42