Skip to content

Instantly share code, notes, and snippets.

View rahiyansafz's full-sized avatar
I’d rather take coffee than compliments just now.

Rahiyan Safin rahiyansafz

I’d rather take coffee than compliments just now.
View GitHub Profile
console.log("Hello, world!");
class Hello {
public static void main(String[] args) {
System.out.println("Hello, world!");
}
}
package main
import "fmt"
func main() {
fmt.Println("Hello, world!")
}
#include <iostream>
using namespace std;
int main() {
cout << "Hello, world!" << endl;
return 0;
}
using System;
class Hello {
static void Main() {
Console.WriteLine("Hello, world!");
}
}
#include <stdio.h>
int main() {
printf("Hello, world!\n");
return 0;
}
echo 'Hello, world!'