Sea
Hello World

hi

package main

import fmt

func main() {
    fmt.Println("hello")
}
package com.example.demo;

public class HelloWorld {

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

}
#include <stdio.h>

int main() {
    printf("%d", true);
    return 0;
}
print("hello")
fn main() {
    println!("Hello, world!");
}

Last modified on 2020-01-15