vote up 56 vote down star
36

We have had an interesting competition once, where everyone would write their implementation of hello world program. One requirement was that is should be less than 20 bytes in compiled form. the winner would be the one whose version is the smallest...

What would be your solution? :)

Platform: 32bit, x86

OS: DOS, Win, GNU/Linux, *BSD

Language: Asm, C, or anything else that compiles into binary executable (i.e. no bash scripts and stuff ;)

flag
13  
If i hack linux source code, delete some stuff i wasn't using, and the put in code to do "hello world", do i get points for consuming negative bytes? – Kent Fredric Nov 12 '08 at 21:13
2  
I think an implementation of a PORTABLE Hello World program would be fairer. That way, it wouldn't just work in your own desktop. – qwertyuu Feb 11 at 4:08

24 Answers

vote up 180 vote down check

20 bytes

        .MODEL  TINY
        .CODE
CODE    SEGMENT BYTE PUBLIC 'CODE'
        ASSUME  CS:CODE,DS:CODE
        ORG     0100H
        DB  'HELLO WORLD$', 0
        INC DH
        MOV AH,9
        INT 21H
        RET

Assemble with Microsoft Macro Assembler using:

ML /AT HELLO.ASM

File size: 20 bytes

That's about as short as it's going to get and still be a well behaved program.

Now, if you just want it shorter and don't care about a few extra characters being output on the screen, you could do it this way:

17 bytes and it does output HELLO WORLD before exiting nicely back to DOS.

	.MODEL  TINY
	.CODE
CODE    SEGMENT BYTE PUBLIC 'CODE'
	ASSUME  CS:CODE,DS:CODE
	ORG     0100H
	MOV    AH,9
	INT    21H
	RET
	DB    'HELLO WORLD$'
CODE    ENDS
link|flag
1  
Funny, even when using your code, NASM still gives me a 20byte binary. – FlySwat Nov 12 '08 at 18:46
1  
Sorry, yes, it is 20 bytes when I include the RET command. blush – BoltBait Nov 12 '08 at 18:55
The second snippet doesn't output "HELLO WORLD" under the NTVDM on my system. – Jonas Gulle Nov 12 '08 at 20:37
1  
@Jonas, it is possible that your PSP had a $ character in it. Usually it won't, but if it does, the smaller program won't work. That's why I said that the program was not 'well behaved'. Try putting a INC DH after the ORG command. It'll work better and still be 19 bytes. – BoltBait Nov 13 '08 at 17:00
2  
@BoltBait, upvoting just because you're sneaky... – paxdiablo Nov 20 '08 at 3:14
show 6 more comments
vote up 0 vote down

In good old BASIC:

? "Hello World"
link|flag
vote up 1 vote down

In MSIL

.method private hidebysig static void  Main() cil managed
{
  .entrypoint
  // Code size       13 (0xd)
  .maxstack  8
  IL_0001:  ldstr      "Hello World"
  IL_0006:  call       void [mscorlib]System.Console::Write(string)
  IL_000c:  ret
}

Well it says 13, doesn't it?
[Edit]
Made the WriteLine to Write..

link|flag
vote up 1 vote down

not serious... but today is April 1st:
if letting the shell do the job is valid, just set the prompt to "Hello World" and everytime you type the enter-key you get a new "Hello World" (or change to a directory called that way...) :-)

link|flag
vote up 2 vote down

BASIC

? "Hello World"

link|flag
vote up 0 vote down

I quite like the shell script

#!/bin/ls -1

although it needs to be named "Hello, world!" and be the only file in its directory (hey, at 12 bytes the program is shorter than the output). A little better, and shorter too (7 bytes), is

echo $0

This needs to be named Hello world, but works in any directory (that's gotta' be the weirdest "feature" of a program).

Of course, there's always the empty string as a program in my HelloWorldLanguage in which every string is a program which prints the famous greeting. You can use any of the above as an interpreter for it ;-)

By the way, I think Jon Skeets language is inadequate: it doesn't allow for comments, in-line documentation or in-line test cases. In practice, I think I'd prefer

module Greeter
/**
 * print the given message, defaulting to "Hello world"
 * @argument message The message to be printed
 * @return whether the print was succesful
 * @postcondition Either nothing is printed, or (only if message is non-null) the message is printed
 */
boolean printMessage(String message) {
    try { System.console.OutPut(message); }
    except (InputOutPutException theexception) {
        return false;
    }
    return true;
}
/***
 * void testTestFrameworkIO(String arguments[]) {
 *    assert(printMessage("Hello, world"));
 */

Which is also a valid program in HelloWorldLanguage. I think it's been underengineered: there has to be some applicable design pattern I can use... :D

link|flag
vote up 0 vote down

GWBasic / QBasic:

?"Hello World"

link|flag
vote up 19 vote down

in DOS:

C:\>debug
-e 10 "Hello World!$"
-a
139B:0100 mov ah,09
139B:0102 mov dl,10
139B:0104 int 21
139B:0106 int 20
139B:0108
-g
Hello World!
Program terminated normally
-

from 0100 to 0108, EIGHT BYTES. Of course the "Hello World!" wasn't really part of the program it was just hanging out in the memory.

I win, competition over.

link|flag
HAHA - minus the "go to hell" part!!! – Aaron Apr 16 at 18:04
vote up 156 vote down
henk@korhal ~ $ xxd Hello\ World\! 
0000000: 00                                       .
henk@korhal ~ $ ./Hello\ World\! 
bash: ./Hello World!: cannot execute binary file
henk@korhal ~ $

1 byte binary, prints hello world!

link|flag
Haha ;) nice one – Daok Dec 8 '08 at 22:23
8  
i like this one =) +1 to the best abuse of the operating system – Chii Dec 17 '08 at 10:21
Couldn't an empty file suffice as well? – Johannes Rössel Mar 23 at 19:08
Nope, try it and see. – Henk Mar 24 at 22:12
An empty file works on NT-based Windows just fine. – Coding With Style Aug 4 at 2:11
show 1 more comment
vote up 5 vote down

The smallest PE files (win32) you can create is 97 bytes.

See the Tiny PE page for all the gory details.

link|flag
vote up 2 vote down

Language? Processor?

I define an language with the following grammar: {Start} -> nil

All statements in this language are defined to print "Hello World" on execution.

The following string is a program in this language that prints "Hello World".

""

Zero bits. I win.

link|flag
sorry you're not a worshipped C# troll, so nobody will vote you up. – Anacrolix Nov 6 at 16:47
vote up 6 vote down

0-byte Hello World program

  1. In an empty directory, create a 0-byte file named "Hello World"
  2. Execute it by typing "dir/b" (or "ls" depending on your OS) at the command prompt
link|flag
Hrm. But DIR is the program printing Hello World... so really the program is whatever size dir.exe is... – Telos Nov 14 '08 at 23:19
5  
@Telos: using that logic, you must include the size of the OS as well ;-) – Ferruccio Dec 8 '08 at 22:27
No, the bigger problem is that the program data is not the file's contents but the filename itself. Therefore, the program is in fact 11 bytes and not 0. – Coding With Style Jul 18 at 10:09
vote up 35 vote down

I win!

1 byte!

ret                  ; C3

But! First you have to install this little interrupt vector so that we are a part of the operating system :) Works perfectly under the NTVDM too.

Binaries and source code here for a working example. First run "hw_hook.com", then "hello.com".

The RET will end up invoking the INT 20h, so I hook the INT 20h with my "Hello World" interrupt vector.

%macro sethook 3
 push es
 push ds
 xor ax, ax
 mov es, ax
 mov ds, ax
 mov di, (%1 * 4)    ; calculate IDT offset
 mov si, di
 cli
 lodsd               ; get the old handler
 mov [cs:%3], eax    ; save the old handler
 mov ax, %2          ; and the offset to the new handler
 rol eax, 16
 push cs
 pop ax
 rol eax, 16
 stosd               ; set the new handler
 sti
 pop ds
 pop es
%endmacro

 bits 16
 org 100h
_start:
 int 12h             ; get total free memory in ax
 dec ax              ; reserve one kilobyte
 push ds
 push 40h
 pop ds
 mov [ds:13h], ax    ; store the new memory size
 pop ds
 ; now relocate
 push cs
 pop ds
 mov si, hook_size 
 shl ax, 6
 mov es, ax
 xor di, di
 mov cx, hook_size
 rep movsb
 ; setup "hello world" hook :)
 sethook 20h, hello_hook, orig_vector
 mov ax, 4c00h
 int 21h

hello_hook:
 pusha
 pushf
 mov ah, 09h
 mov dx, msg
 int 21h
 popf
 popa
 pushf
 call far [cs:orig_vector]
 iret
 msg db "Hello World$"
 orig_vector dd 0
 hook_size equ $ - hello_hook

No, this is not meant seriously. Posted as a joke.

link|flag
4  
As funny as the joke can be, thanks for posting this little code, might actually be helpful to some :D – Vincent Robert Nov 14 '08 at 9:10
5  
Hmmmm... this makes me want to write "Hello World" to my boot sector – GameFreak Mar 27 at 21:50
+1 for moving the string out of the domain being measurabled. No bonus just for tying with Jon Skeet. – Thorbjørn Ravn Andersen Jun 27 at 16:29
vote up 30 vote down

Here's a 32-byte version using Linux system calls:


.globl _start
_start:
        movb $4, %al
        xor %ebx, %ebx
        inc %ebx
        movl $hello, %ecx
        xor %edx, %edx
        movb $11, %dl
        int $0x80               ;;; sys_write(1, $hello, 11)
        xor %eax, %eax
        inc %eax
        int $0x80               ;;; sys_exit(something)
hello:
        .ascii "Hello world"
When compiled into a minimal ELF file, the full executable is 116 bytes:
00000000  7f 45 4c 46 01 01 01 00  00 00 00 00 00 00 00 00  |.ELF............|
00000010  02 00 03 00 01 00 00 00  54 80 04 08 34 00 00 00  |........T...4...|
00000020  00 00 00 00 00 00 00 00  34 00 20 00 01 00 00 00  |........4. .....|
00000030  00 00 00 00 01 00 00 00  00 00 00 00 00 80 04 08  |................|
00000040  00 80 04 08 74 00 00 00  74 00 00 00 05 00 00 00  |....t...t.......|
00000050  00 10 00 00 b0 04 31 db  43 b9 69 80 04 08 31 d2  |......1.C.i...1.|
00000060  b2 0b cd 80 31 c0 40 cd  80 48 65 6c 6c 6f 20 77  |....1.@..Hello w|
00000070  6f 72 6c 64                                       |orld|
00000074
link|flag
for some reason I couldn't get that code to compile under 160b. ( and that was after STRIP and hand ripping code off the end after helloworld with a hex editor ) – Kent Fredric Nov 12 '08 at 21:03
2  
See muppetlabs.com/~breadbox/software/… . The ELF I gave above is the minimal possible ELF without doing any sneaky trickery from that article. I constructed this ELF by hand, not with any normal compiler or linker. – Adam Rosenfield Nov 12 '08 at 22:20
Wow, hand crafted elf header.. nice... :) That's a trick I'll have to remember... – dicroce Nov 13 '08 at 3:57
vote up 20 vote down

Are you all using AH=09h/INT21h function?

There is an undocumented INT 29h which echoes the character in AL on the screen. So here is an alternative solution with a loop.

Not "well behaved", but better than BoltBaits which can randomly end prematurely if there is a '$' in the PSP. This program will output "Hello World" among with some junk characters.

17 bytes

  bits 16
  org 100h
next:
  lodsb           ; AC
  int 29h         ; CD29
  loop next       ; E2FB
  ret             ; C3
msg db "Hello World"

Assuming CX is 0 and SI < 106h on entry.

link|flag
1  
if memory serves me well, winner did use int 29h or int 2eh... it was quite a bit ago, but solution was 19bytes long :) – xelurg Nov 12 '08 at 20:47
vote up 9 vote down

If you want shortest source code, "Hello World" is a valid program in quite a few languages.

link|flag
vote up 28 vote down

Its highly unlikely the actual compiled executable would be ever only 20 bytes. You have normally lots of OS specific loading code, ELF headers are huge as it is.

The only way to get something running in that short a space would be a "new" compiled format which was merely the string "hello world", that could be injected directly into the parent OS, and somehow the OS just "knew" that that file was to be printed.

But then your getting into technicalities, becuase you are, by proxy, calling an entire kernel to do the real work, and that averages between 2 and 8 MB.

If your going to do something that works without an OS, then you have initialization routines you have to do just to make it work.

And then the question evolves, does "20 bytes" include or exclude the byte-code in the bios?

If you really want to do this, maybe you should have a dedicated hardware architecture, with a hard wired rom chip with the "20 bytes" of code programmed in electronically.

outside these weird technical constraints, I argue that i have my own "interpreted language", known as "cat".

"cat" is also my os, and i use it to create the initial source file

1) Coding, and compiling my bytecode:

 cat > helloworld.txt 
 Hello World^D^D

2) Executing the "compiled" bytecode

 cat helloworld.txt 
 Hello World

see. marvelous. I'll take the gold medal thanks :)

Only 11 bytes.

Late linux trick

$ cd /tmp
$ echo '#!/bin/echo' >> hello
$ chmod u+x hello
$ ./hello world
> ./hello world
$ wc -c ./hello
> 12 ./hello
link|flag
1  
Under DOS, the ".COM" format is pure binary image. The 256 byte PSP is constructed during load. There's no relocation information required. You can have a single byte .COM application under DOS (the ret instruction is a single byte opcode)! – Brian Knoblauch Nov 12 '08 at 18:52
Well, you can actually shrink a perfectly legal ELF binary quite alot. Not to 20 bytes, buts still: muppetlabs.com/~breadbox/software/… – JesperE Nov 12 '08 at 19:29
1  
JesperE beat me to the punch. It is possible to shrink ELF down quite a lot, but not to 20 bytes. – Max Lybbert Nov 12 '08 at 19:43
3  
bonus question: make cat turing complete :) – cobbal Mar 19 at 7:08
sorry @cobbal, cat only has print implemented, which changes its behaviour depending on environment, but patches welcome. – Kent Fredric May 19 at 19:20
vote up 314 vote down

Very simple:

h

This is from my unreleased "HelloWorld" language. It's an interpreted language, so there's no real compiled form. The language is very simple though - the above is the only valid program, with the well-defined behaviour of printing "Hello World".

Arguably I could have designed it to only accept an empty file as input, but that would have been silly.

link|flag
31  
There is already a language that does this (and more): HQ9+. See cliff.biffle.org/esoterica/hq9plus.html/… – Adam Rosenfield Nov 12 '08 at 19:15
29  
(Side note... I can't believe this answer has 5 upvotes at the moment. What are you folks on?) – Jon Skeet Nov 12 '08 at 19:20
17  
If this gets accepted, I'm clearly going to have to actually implement the thing :( – Jon Skeet Nov 12 '08 at 20:01
14  
This is funny. I didn't realize you got all your rep from jokes. :) – MusiGenesis Nov 18 '08 at 5:03
70  
Would this post have gotten so many up-votes if anyone else had posted it? ( I very much doubt it ) – Brad Gilbert Dec 25 '08 at 22:53
show 23 more comments
vote up 2 vote down

Unfortunately, Jonathan's solution won't work.

From the reference of int 21h, function 09:

"Sends a string to standard output. The string must end with '$' (ascii 36/24h). The '$'-char is not displayed."

So you have to end your "Hello World" string with a "$", so it's 21 bytes. Then, you have to exit the program (otherwise the behaviour is undefined) with two more instructions:

mov ah,4Ch
int 21h

See boltbait's solution for a working one in less than 20 bytes.

link|flag
Well, you don't have to clean up afterwards, my program printed helloworld then crashed :) But good call on the terminator. This was a fun trip down memory lane. – FlySwat Nov 12 '08 at 18:39
I disagree. I have already demonstrated in my post a 19 byte perfectly working program. – BoltBait Nov 12 '08 at 18:40
Microsoft Assembler 1, Nasm 0. – FlySwat Nov 12 '08 at 18:42
You're right. The inc dh trick is good :) – friol Nov 12 '08 at 18:43
There's a couple shorter exits as well. int 20h is fine for a .COM image like this. Even ret is acceptable (returns to the PSP, where there's a "int 20h" instruction!). – Brian Knoblauch Nov 12 '08 at 18:56
vote up 4 vote down
title Hello World
dosseg
.model small
.stack 100h
.data
hello_message db 'Hello World',0dh,0ah,'$'
.code
 main  proc
    mov    ax,@data
    mov    ds,ax
    mov    ah,9
    mov    dx,offset hello_message
    int    21h
    mov    ax,4C00h
    int    21h
main  endp
end   main

actually it's from: http://robertsundstrom.wordpress.com/2008/02/17/assembly-x86/

hello world msg edited for smaller executable

and i'm new on this site i wasn't aware i had to post links to everything, he just asked how to do it so i found a resource and gave it to him, what you get for helping i guess.

link|flag
You get no credit for just posting from en.wikiversity.org/wiki/Hello,_world! – FlySwat Nov 12 '08 at 18:22
3  
+1 for public-domain code reuse – Steven A. Lowe Nov 12 '08 at 18:28
vote up 12 vote down
m db 'hello world$'  ; store literal
mov dx, OFFSET m    ; Pointer to m in dx
mov ah, 9           ; Prep for interupt
int 21h;            ; BIOS interupt, will read dx and ah,
                    ; ah=9 makes it print dx

I haven't assembled it yet, but that's about as small as you can make it. This is from memory from doing assembly about a decade ago, so I might have made a syntax error or two.

EDIT: 21 bytes assembled :(

link|flag
No return to the OS? – Brian Knoblauch Nov 12 '08 at 18:51
1  
Wasn't in the requirements :D – FlySwat Nov 12 '08 at 19:07
Fine. Then mine just got a byte shorter! ;) – BoltBait Nov 12 '08 at 19:08
vote up 3 vote down

In shell, 19 bytes:

:
echo Hello World

I know you tagged this question 'asm'. I'm just offering this as an example of higher-level coding.

link|flag
Doesn't count, because the runtime has to be included in the byte size :) – FlySwat Nov 12 '08 at 18:17
Fair enough! :) – Bill Karwin Nov 12 '08 at 19:01
Why? The question didn't adequately specify OS, execution environment, etc. – JesperE Nov 12 '08 at 19:30
2  
I think this should count. Technically the asm version uses dos calls. The code that supports those isn't counted in the byte count, so why should it count here. – baash05 Nov 12 '08 at 21:02
LOL! Thanks, but it's no big deal. If the intent of the question was to get x86 asm solutions, that's up to the original poster. – Bill Karwin Nov 12 '08 at 21:18
vote up 0 vote down

The Hello World Literal is what, 13 bytes as is? So that definitely makes a challenge :)

link|flag
vote up 0 vote down

There's a print string function in the BIOS, I'd call that BIOS address with the address of the string, which would follow my small block of code.

I've only done this on an old 8-bit micro and CP/M, but I assume it would work on a PC as the BIOS is similar to CP/M's functions.

link|flag
1  
BIOS is worse, requires more parameters (so more bytes wasted). – Brian Knoblauch Nov 12 '08 at 18:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.