Bash 5.0 Bash 5.0.11
·
Website | |
Brainf*ck Bf 20041219
·
Website Experimental | 1
| -[------->+<]>-.-[->+++++<]>++.+++++++..+++.[--->+<]>-----.>-[--->+<]>-.-[--->+<]>--.+.--------.--[--->+<]>-.[--->+<]>-.
|
|
C# Mono 6.0 Mono 6.0.0
·
Website Experimental | 1
2
3
4
5
6
7
| class Hello
{
static void Main()
{
System.Console.WriteLine("Hello Toph!");
}
}
|
1
2
| csc -o -nologo hello.cs
./hello.exe
|
|
C++11 GCC 7.4 GCC 7.4.0
·
Website | 1
2
3
4
5
6
7
8
| #include <iostream>
using namespace std;
int main() {
cout << "Hello Toph!" << endl;
return 0;
}
|
1
2
| g++ -static -s -x c++ -O2 -std=c++11 -D ONLINE_JUDGE hello.cpp -lm
./a.out
|
|
C++14 GCC 8.3 GCC 8.3.0
·
Website | 1
2
3
4
5
6
7
8
| #include <iostream>
using namespace std;
int main() {
cout << "Hello Toph!" << endl;
return 0;
}
|
1
2
| g++ -static -s -x c++ -O2 -std=c++14 -D ONLINE_JUDGE hello.cpp -lm
./a.out
|
|
C++17 GCC 9.2 GCC 9.2.0
·
Website | 1
2
3
4
5
6
7
8
| #include <iostream>
using namespace std;
int main() {
cout << "Hello Toph!" << endl;
return 0;
}
|
1
2
| g++ -static -s -x c++ -O2 -std=c++17 -D ONLINE_JUDGE hello.cpp -lm
./a.out
|
|
C++20 Clang 16.0 Clang 16.0.6
·
Website Experimental | 1
2
3
4
5
6
7
8
| #include <iostream>
using namespace std;
int main() {
cout << "Hello Toph!" << endl;
return 0;
}
|
1
2
| clang++ -static -s -x c++ -O2 -std=c++20 -D ONLINE_JUDGE hello.cpp -lm
./a.out
|
|
C++20 GCC 12.1 GCC 12.1.0
·
Website | 1
2
3
4
5
6
7
8
| #include <iostream>
using namespace std;
int main() {
cout << "Hello Toph!" << endl;
return 0;
}
|
1
2
| g++ -static -s -x c++ -O2 -std=c++20 -D ONLINE_JUDGE hello.cpp -lm
./a.out
|
|
C11 GCC 12.1 GCC 9.2.0
·
Website | 1
2
3
4
5
6
| #include <stdio.h>
int main() {
printf("Hello Toph!");
return 0;
}
|
1
2
| gcc -std=c11 -static -O2 -D ONLINE_JUDGE hello.c -lm
./a.out
|
|
C11 GCC 9.2 GCC 9.2.0
·
Website | 1
2
3
4
5
6
| #include <stdio.h>
int main() {
printf("Hello Toph!");
return 0;
}
|
1
2
| gcc -std=c11 -static -O2 -D ONLINE_JUDGE hello.c -lm
./a.out
|
|
Common Lisp SBCL 2.0 SBCL 2.0.4
·
Website Experimental | 1
2
| sbcl --noinform --eval '(compile-file "hello.lisp")' --quit
sbcl --script hello.fasl
|
|
D8 11.8 D8 11.8.49
·
Website Experimental | 1
| console.log('Hello Toph!');
|
|
Erlang 22.3 Erlang 22.3
·
Website Experimental | 1
2
3
4
| -export([main/1]).
main([]) ->
io:format("Hello Toph!~n").
|
|
Free Pascal 3.0 Free Pascal 3.0.0
·
Website Experimental | 1
2
3
4
| program HelloToph(output);
begin
WriteLn('Hello Toph!');
end.
|
1
2
| fpc -oa.out hello.pas
./a.out
|
|
Go 1.18 Go 1.18.2
·
Website | 1
2
3
4
5
6
7
| package main
import "fmt"
func main() {
fmt.Println("Hello Toph!")
}
|
1
2
| go build -o 6.out
./6.out
|
|
Grep 3.7 Grep 3.7 Experimental | |
Haskell 8.6 Haskell 8.6.5
·
Website Experimental | 1
| main = putStrLn "Hello Toph!"
|
|
Java 1.8 Java v1.8.0_03 (OpenJDK)
·
Website | 1
2
3
4
5
| class Hello {
static public void main(String args[]) {
System.out.println("Hello Toph!");
}
}
|
1
2
| javac Hello.java
java Hello
|
|
Kotlin 1.1 Kotlin 1.1.0
·
Website | 1
2
3
| fun main(args : Array<String>) {
println("Hello Toph!")
}
|
1
2
| kotlinc hello.kt
kotlin hello
|
|
Lua 5.4 Lua 5.4.3
·
Website Experimental | |
Node.js 10.16 Node.js 10.16.3
·
Website | 1
| console.log('Hello Toph!');
|
|
Perl 5.30 Perl 5.30.0
·
Website Experimental | |
PHP 7.2 PHP 7.2.22
·
Website | 1
2
| <?php
echo 'Hello Toph!';
|
|
PyPy 7.1 (2.7) PyPy 7.1.1 (Python 2.7)
·
Website | |
PyPy 7.1 (3.6) PyPy 7.1.1 (Python 3.6)
·
Website | |
Python 2.7 Python 2.7.16
·
Website | |
Python 3.11 Python 3.11.4
·
Website Experimental | |
Ruby 2.7 Ruby 2.7.8
·
Website | |
Ruby 3.2 Ruby 3.2.2
·
Website | |
Rust 1.57 Rust 1.57.0
·
Website Experimental | 1
2
3
| fn main() {
println!("Hello Toph!")
}
|
1
2
| rustc -O hello.rs
./hello
|
|
Swift 5.3 Swift 5.3
·
Website Experimental | |
Whitespace Whitespace
·
Website Experimental | |
Python 3.7 Python 3.7.4
·
Website Deprecated | |