Question:
write a hello world in an obscure language.?
rhino
2013-02-10 20:32:20 UTC
Write a hello world in an obscure language. The rules.....
1. the program must work correctly.
2. You must state what program it is.
3. If 2 people use the same language, the first to post gets the credit.
4. Most obscure working program wins.
As your prize you will be awarded with best answer and I will post my obscure language (which I'm almost sure you've never heard of)
Nine answers:
Jesse J
2013-02-10 20:40:51 UTC
AutoIt

Msgbox(64, "", "Hello, world!")



My favorite, though, is:

http://en.m.wikipedia.org/wiki/Brainfuck
anonymous
2014-10-12 21:03:23 UTC
Write a hello world in an obscure language.?



Write a hello world in an obscure language. The rules.....

1. the program must work correctly.

2. You must state what program it is.

3. If 2 people use the same language, the first to post gets the credit.

4. Most obscure working program wins.

As your prize you will be awarded with best answer and I will post my obscure language (which I'm almost sure you've never heard of)
Ratchetr
2013-02-10 21:19:34 UTC
Okay, I just copied and pasted this from MSDN. But I compiled it with ilasm and it does compile and run:



// Metadata version: v2.0.50215

.assembly extern mscorlib

{

    .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4..

    .ver 2:0:0:0

}

.assembly sample

{

    .custom instance void [mscorlib]System.Runtime.CompilerServices.CompilationRelaxationsAttribute::.ctor(int32) = ( 01 00 08 00 00 00 00 00 )

    .hash algorithm 0x00008004

    .ver 0:0:0:0

}

.module sample.exe

// MVID: {A224F460-A049-4A03-9E71-80A36DBBBCD3}

.imagebase 0x00400000

.file alignment 0x00000200

.stackreserve 0x00100000

.subsystem 0x0003 // WINDOWS_CUI

.corflags 0x00000001 // ILONLY

// Image base: 0x02F20000





// =============== CLASS MEMBERS DECLARATION ===================



.class public auto ansi beforefieldinit Hello

extends [mscorlib]System.Object

{

    .method public hidebysig static void Main(string[] args) cil managed

    {

        .entrypoint

        // Code size 13 (0xd)

        .maxstack 8

        IL_0000: nop

        IL_0001: ldstr "Hello World!"

        IL_0006: call void [mscorlib]System.Console::WriteLine(string)

        IL_000b: nop

        IL_000c: ret

    } // end of method Hello::Main



    .method public hidebysig specialname rtspecialname

instance void .ctor() cil managed

    {

        // Code size 7 (0x7)

        .maxstack 8

        IL_0000: ldarg.0

        IL_0001: call instance void [mscorlib]System.Object::.ctor()

        IL_0006: ret

    } // end of method Hello::.ctor



} // end of class Hello
anonymous
2013-02-10 21:42:19 UTC
public class HelloWorld{

public static void main(String[] args){

System.out.println("Hello World");

}

}



Language: Java
Chris
2013-02-10 20:34:02 UTC
Common language: python!



print 'hello world'





#Only programming language I know. :(
SteveO
2013-02-10 20:40:58 UTC
10001010011000001000011100001000101000001000001100000010000100010001000100110111

00000010001001000000001001001000011101000100100000110100000000100010010000010001

100011110100000001001000001101001001011001001001100001000000



That is hello world in Nameless, not binary.
Jeff
2013-02-10 20:37:17 UTC
http://en.wikipedia.org/wiki/Brainfuck
ʄaçade
2013-02-10 20:37:38 UTC
:

echo hello world



{ Not really obscure though. Bash, ksh, and sh. }



#!/bin/perl -w

print "hello world\n";
anonymous
2014-06-19 01:35:32 UTC
confusing aspect browse on a search engine just that could help


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...