| Bash 5.2 Bash 5.2.26
·
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++17 GCC 13.2 GCC 13.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 | 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 13.2 GCC 13.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++20 -D ONLINE_JUDGE hello.cpp -lm
./a.out
|
|
| C++23 GCC 13.2 GCC 13.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++23 -D ONLINE_JUDGE hello.cpp -lm
./a.out
|
|
| C17 GCC 13.2 GCC 13.2.0
·
Website | 1
2
3
4
5
6
| #include <stdio.h>
int main() {
printf("Hello Toph!");
return 0;
}
|
1
2
| gcc -std=c17 -static -O2 -D ONLINE_JUDGE hello.c -lm
./a.out
|
|
| C23 GCC 13.2 GCC 13.2.0
·
Website | 1
2
3
4
5
6
| #include <stdio.h>
int main() {
printf("Hello Toph!");
return 0;
}
|
1
2
| gcc -std=c2x -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.22 Go 1.22.1
·
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.9 Kotlin 1.9.24
·
Website | 1
2
3
| fun main(args : Array<String>) {
println("Hello Toph!")
}
|
1
2
| kotlinc hello.kt
kotlin hello
|
|
| Kotlin 2.0 Kotlin 2.0.0
·
Website Experimental | 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 8.3 PHP 8.3.3
·
Website | 1
2
| <?php
echo 'Hello Toph!';
|
|
| PyPy 7.3 (3.10) PyPy 7.3.16 (Python 3.10)
·
Website | |
| Python 3.12 Python 3.12.2
·
Website | |
| Ruby 3.2 Ruby 3.2.2
·
Website | |
| Rust 1.84 Rust 1.84.0
·
Website Experimental | 1
2
3
| fn main() {
println!("Hello Toph!")
}
|
1
2
| rustc --edition 2021 -O hello.rs
./hello
|
|
| Swift 5.3 Swift 5.3
·
Website Experimental | |
| Whitespace Whitespace
·
Website Experimental | |
| C11 GCC 13.2 GCC 13.2.0
·
Website Deprecated | 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
|
|