Behaviour Pattern

1
2
3
#!/bin/bash

echo "Hello world!"
1
2
3
4
5
#include <stdio.h>

int main(void) {
  printf("Hello world!\n");
}
1
2
3
4
5
6
#include <iostream>

int main() {
  std::cout << "Hello world!" << std::endl;
  return 0;
}
1
2
3
4
5
6
7
using System;

class Program {
  static void Main(string[] args) {
    Console.WriteLine("Hello world!");
  }
}