/ tests / tests / compiler / strings / string.adl
string.adl
 1  
 2  program test.alpha {
 3      transition main(public a: u32, b: u32) -> u32 {
 4          let c: u32 = a + b * 1u32; // c = 3
 5          let str:string = "a a a";
 6          if(str == "b b  b") {
 7              c = 123u32;
 8          } else {
 9              c = 321u32;
10          }
11          return c;
12      }}