Hacker News new | ask | show | jobs
by librasteve 11 days ago
i like the rust page example…

  use std;
  import std::io;

  fn main() {
    for i in [1, 2, 3] {
      io::println(#fmt("hello %d\n", i));
    }
  }
here’s what the Raku site should look like:

  say “hello $_” for ^3