myCompiler myCompiler
Deutsch English Español Français Italiano 日本語 한국어 Nederlands Polski Português
Recent
Login Sign up
Recent
Login Sign up
M

@MihaiPopa1

Hello, world! program in Erlang

Erlang
4 years ago
% Hello, world! program in Erlang main(_) -> io:format("Hello, world!").

Program to select female people from current people in SQL

SQL
4 years ago
-- Create a table CREATE TABLE persoane ( id INTEGER, name TEXT NOT NULL, gender TEXT NOT NULL, age INTEGER); -- Insert vaules INSERT INTO persoane VALUES (1, 'Popa Mihai Consim', 'M', '11');

Program to select male people from current people in SQL

SQL
4 years ago
-- Create a table CREATE TABLE persoane ( id INTEGER, name TEXT NOT NULL, gender TEXT NOT NULL, age INTEGER); -- Insert vaules INSERT INTO persoane VALUES (1, 'Popa Mihai Consim', 'M', '11');

Hello, world! in Clojure

Clojure
4 years ago
;; Hello, world! program in Clojure (println "Hello, world!")

Hello, world! in Deno

Deno
4 years ago
// Hello, world! program in Deno console.log("Hello, world!");

Hello, world! in Go

Go
4 years ago
// Program to print "Hello, world!" on screen in pure Go package main import "fmt" func main() { fmt.Println("Hello, world!") }

Hello, world! in Python

Python
4 years ago
# Program to print "Hello, world!" on screen in Python! print("Hello, world!") # prints "Hello, world!"
Previous Next page

Supported languages

Deno JavaScript NodeJS Python Ruby Go C C++ Java C# TypeScript PHP Bash R Octave (MATLAB) Fortran Lua Erlang SQL MySQL MongoDB Clojure D Perl Kotlin Swift Rust Assembly
© 2026 mycompiler.io
Terms of service Privacy policy Contact us