kit

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

114_many_tuple_fields.toy (320B)


      1 tuple ManyTuple {
      2   i64, i64, i64, i64, i64, i64,
      3   i64, i64, i64, i64, i64, i64,
      4   i64, i64, i64, i64, i64, i64,
      5 }
      6 
      7 fn __user_main(): i64 {
      8   let t: ManyTuple = ManyTuple {
      9     1, 2, 3, 4, 5, 6,
     10     7, 8, 9, 10, 11, 12,
     11     13, 14, 15, 16, 17, 18,
     12   };
     13   return t.17;
     14 }
     15 
     16 fn main(): i32 { return __user_main() as i32; }