Main.hx 113 B

123456
  1. class Main {
  2. static function main() {
  3. var who = "world";
  4. 'hello, $who, how are you';
  5. }
  6. }