"Hello, World!"
Introduction
The classic "Hello, World" challenge. What more can I say?
Rules
- Program takes no input.
- Program outputs
Hello, World!
with an optional trailing newline. No other output is accepted.
Shortest submission in bytes wins.
Shakespeare Programming Langua …
4y ago
Vyxal, 2 bytes KH Th …
4y ago
PHP, 13 bytes Hello, Wo …
4y ago
HQ9+, 1 byte H Oblig …
4y ago
[Common Lisp], 26 22 bytes …
4y ago
Javascript V8, 888 bytes ```j …
4y ago
QBASIC, 17, 16 bytes ?" …
4y ago
C# 9, 38 bytes System.C …
4y ago
Perl 5 `-E`, 18 bytes ``` …
3y ago
[Python 2], 20 bytes …
4y ago
[C# (.NET Core)], 60 bytes …
3y ago
05AB1E, 7 bytes ”Ÿ™,‚ï! …
4y ago
LOLCODE, 37 bytes HAI 1 …
4y ago
[C++ (gcc)], 43 bytes …
4y ago
R, 20 bytes ``` cat("Hello …
4y ago
[Bash], 18 bytes ec …
4y ago
SOGL, 10 bytes ╥‰⅜,(ε ‘ū …
4y ago
///, 13 bytes ``` Hello, W …
4y ago
[PowerShell], 15 bytes …
4y ago
[RoadLang], 59 bytes …
4y ago
AppleScript, 15 bytes " …
4y ago
[JavaScript (V8)], 28 bytes …
4y ago
[ARBLE], 15 bytes " …
4y ago
Japt, 11 bytes `HÁM, W …
4y ago
Raku, 19 bytes ``` "Hello, W …
4y ago
[Emmental], 51 bytes ```non …
15d ago
[Taxi], 183 bytes Go to …
24d ago
[C (gcc)], 30 bytes …
11mo ago
C (gcc), 46 bytes ```cpp pri …
2y ago
Z80 Assembler, 50 bytes ``` …
2y ago
J, 15 bytes ``` 'Hello, Wo …
3y ago
[dc], 16 bytes [Hello, …
3y ago
[Seriously], 1 byte H …
3y ago
[Unlambda], 40 bytes `` …
3y ago
[Haskell], 25 bytes …
3y ago
Turing Machine.io, 202 bytes …
3y ago
Scala, 42 bytes object>e …
3y ago
[C# (.NET Core)], 67 bytes …
3y ago
Rockstar, 19 bytes say …
3y ago
PureScript, 25 bytes ``` m …
3y ago
Swift, 23 bytes ```swift p …
3y ago
Kotlin, 34 bytes ```kotlin …
3y ago
[Forth (gforth)], 16 bytes …
4y ago
HTML, 26 13 bytes ``` Hell …
3y ago
[K (oK)], 15 bytes "Hel …
11mo ago
[AWK], 2 bytes $0 Tr …
11mo ago
JavaScript V8, 26 bytes ``` …
3y ago
SOS, 155 Bytes !+!-!!+! …
3y ago
[shortC], 16 bytes AJ"H …
3y ago
[jq] `--null-input` `--raw-out …
3y ago
[SQLite], 21 bytes sele …
3y ago
[Emoji], 24 bytes 💬Hell …
3y ago
[Sclipting], (UTF-16) 18 bytes …
3y ago
[Java (JDK)], 80 bytes …
3y ago
[Chef], 558 485 bytes H …
3y ago
[Forget], 319 bytes pus …
3y ago
Lean, 64 bytes ```lean def …
3y ago
[!@#$%^&()+], 17 bytes …
3y ago
[Pyth], 14 bytes "Hello …
3y ago
Bash, 21 Bytes ```bash pri …
3y ago
[Charcoal], 13 bytes He …
3y ago
Java, 37 Bytes ```java v-> …
3y ago
[Lua], 20 bytes pri …
3y ago
63 answers
ARBLE, 15 bytes
"Hello, World!"
Simple use of Implicit IO. Polyglot with half a dozen golf langauges.
0 comment threads
Raku, 19 bytes
"Hello, World!".say
Explanation
First second answer of the.. entire site, actually. Nothing special. I don't think this can go shorter, but this is Raku, who actually knows. I made this post to (possibly) try and set a precedent for what a answer should look like. Obv you don't have to explain it, but it's nice.
///, 13 bytes
Hello, World!
Someone had to.
18 bytes using replacement
/x/H/xello, World!
23 bytes using two-layer replacement
/a/Hello, World!//b/a/b
a
is replaced with Hello, World!
in /b/a/b
, creating /b/Hello, World!/b
which prints Hello, World!
at the end.
0 comment threads
Scala, 42 bytes
object>extends App{print("Hello, World!")}
0 comment threads
Z80 Assembler, 50 bytes
org 256
ld de,m
ld c,9
jp 5
m:db"Hello, world!\r$"
With assembler there's usually the problem which machine or operating system the program is for. I've chosen CP/M here as it runs on a variety of different machines with a Z80 processor.
CP/M programs start at address 0x100, but the decimal representation 256 is shorter.
The program loads the address of the $-terminated string into the D & E register pair, then the number of the print text subroutine (9) into the C register, and jumps to the BDOS entry. It uses the RET
urn of that routine to end itself, instead of CALL
ing the BDOS and needing an own RET
instruction in the program.
0 comment threads
Turing Machine.io, 202 bytes
0 1 101 3 1 2 0
0 2 108 3 1 3 0
0 3 108 3 1 4 0
0 4 111 3 1 5 0
0 5 44 3 1 6 0
0 6 32 3 1 7 0
0 7 87 3 1 8 0
0 8 111 3 1 9 0
0 9 114 3 1 a 0
0 a 108 3 1 b 0
0 b 100 3 1 c 0
0 c 33 3 1 0 1
Basically just keeps replacing the current cell value with the ASCII value of whatever character in "Hello, World!" its printing and moving on. I might add a more detailed explanation later (or maybe someone else can, if they feel like it).
0 comment threads
Taxi, 183 bytes
Go to Writer's Depot:w 1 r 3 l 2 l."Hello, World!"is waiting at Writer's Depot.Pickup a passenger going to Post Office.Go to Post Office:n 1 r 2 r 1 l.Go to Taxi Garage:s 1 l 1 l 2 r.
Rockstar, 19 bytes
say "Hello, World!"
Try it here (Code will need to be pasted in)
0 comment threads
J, 15 bytes
'Hello, World!'
Or if you prefer to beat around the bush...76 bytes.
{:a.{~-:^:_1@:|.~&2 S:0<@:<\50 16.5 36 50.5 54 54 55.5 22 16 43.5 55.5 57 54
0 comment threads
C (gcc), 30 bytes
main(){puts("Hello, World!");}
This is using GNU C extensions. GNU C allows main()
over int main()
, ss well as using puts
without including stdio.h.
0 comment threads
- ← Previous
- 1
- 2
- 3
- 4
- Next →
1 comment thread