Profile picture ForgotMyCode

Home

This is just a code blocks test.

class Main {

  public static void main(String[] args) {
    System.out.println("Hello world");
  }

}
#include <stdio.h>

int main() {
  printf("Hello world");
  return 0;
}
#include <iostream>

int main() {
  std::cout << "Hello world";
  return 0;
}
print("Hello world")