Programming Languages

Language"Hello Toph!"
Bash 5.2

Bash 5.2.26 · Website

1
echo 'Hello Toph!'
1
bash hello.sh
Brainf*ck

Bf 20041219 · Website

Experimental

1
-[------->+<]>-.-[->+++++<]>++.+++++++..+++.[--->+<]>-----.>-[--->+<]>-.-[--->+<]>--.+.--------.--[--->+<]>-.[--->+<]>-.
1
bf hello.bf
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

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 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
C11 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=c11 -static -O2 -D ONLINE_JUDGE hello.c -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=c23 -static -O2 -D ONLINE_JUDGE hello.c -lm
./a.out
Common Lisp SBCL 2.0

SBCL 2.0.4 · Website

Experimental

1
(princ "Hello Toph!")
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!');
1
d8 hello.js
Erlang 22.3

Erlang 22.3 · Website

Experimental

1
2
3
4
-export([main/1]).

main([]) ->
  io:format("Hello Toph!~n").
1
escript hello.erl
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

1
grep -Pf {source}.re
Haskell 8.6

Haskell 8.6.5 · Website

Experimental

1
main = putStrLn "Hello Toph!"
1
2
ghc hello.hs
./a.out
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

1
print("Hello Toph!")
1
lua hello.lua
Node.js 10.16

Node.js 10.16.3 · Website

1
console.log('Hello Toph!');
1
node hello.js
Perl 5.30

Perl 5.30.0 · Website

Experimental

1
print "Hello Toph!\n";
1
perl hello.pl
PHP 8.3

PHP 8.3.3 · Website

1
2
<?php
  echo 'Hello Toph!';
1
php hello.php
PyPy 7.1 (3.6)

PyPy 7.1.1 (Python 3.6) · Website

1
print("Hello Toph!")
1
pypy3 hello.py
Python 3.12

Python 3.12.2 · Website

1
print("Hello Toph!")
1
python3 hello.py
Ruby 3.2

Ruby 3.2.2 · Website

1
puts "Hello Toph!"
1
ruby hello.rb
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

1
print("Hello Toph!")
1
2
swift build
./main
Whitespace

Whitespace · Website

Experimental

1
whitespace hello.ws

Make a Request

Couldn't find your favorite programming language in the list? Let us know which one.
Toph uses cookies. By continuing you agree to our Cookie Policy.