/ tests / tests / compiler / tuple / function_return_varying_modes.adl
function_return_varying_modes.adl
1  
2  program test.alpha {
3      transition main(a: u8, b: u8) -> (public u8, u8) {
4          return (a + b, b + a);
5      }
6  }