Skip to content

Latest commit

 

History

History
executable file
·
34 lines (26 loc) · 347 Bytes

hello world.md

File metadata and controls

executable file
·
34 lines (26 loc) · 347 Bytes
package main

import "fmt"

func main(){
    fmt.Println("hello world")
}
package Test;

public class Test{
	public static void main(String[]args){
		System.out.println("hello world");
	}
}
#include <iostream>

using namespace std;

int main()
{
	cout<<"hello world"<<endl;
}
print('hello world')