Hello World!

Hi, there! I'm just a hello world article.

Let's check out if code syntax highlighting works too:

// scala 2
object Main extends App {
  println("Hello, world!")
}
// scala 3
@main def hello = println("Hello, world!")
-- haskell
main :: IO ()
main = putStrLn "Hello, world!"
// rust
fn main() {
  println!("Hello, world!");
}
// c++
#include <iostream>

int main() {
  std::cout << "Hello, world!" << std::endl;
  return 0;
}
# bash
echo "Hello, world!"