Portfolio

Blog

Experiments


This page is under construction!

#include <stdlib.h>

int main(int argc, char** argv) {
    printf("Sorry this page isn't complete yet! Please come back later!\n");
    return 1;
}
#include <iostream>

int main(int argc, char** argv) {
    std::cout << "Sorry this page isn't complete yet! Please come back later!" << std::endl;
    return 1;
}
using System;

internal static class Program 
{
    static void Main(params string[] args) 
    {
        Console.WriteLine("Sorry this page isn't complete yet! Please come back later!");
    }
}
fn main() {
    println!("Sorry this page isn't complete yet! Please come back later!");
}
print("Sorry this page isn't complete yet! Please come back later!")