Serving the Quantitative Finance Community

  • 1
  • 2
  • 3
  • 4
  • 5
  • 11
 
User avatar
Cuchulainn
Topic Author
Posts: 20250
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

Hello World in all Languages, post here

March 16th, 2006, 4:35 pm

SNOBOL4/////////////////////////////////////////////////OUTPUT = 'Hello World!'END////////////////////////////////////////////////any more?
 
User avatar
lballabio
Posts: 0
Joined: January 19th, 2004, 12:34 pm

Hello World in all Languages, post here

March 16th, 2006, 7:54 pm

Italian:Ciao Mondo!
 
User avatar
Cuchulainn
Topic Author
Posts: 20250
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

Hello World in all Languages, post here

March 16th, 2006, 7:59 pm

Gaelge,Cead Mile Failte!
Last edited by Cuchulainn on March 15th, 2006, 11:00 pm, edited 1 time in total.
 
User avatar
lballabio
Posts: 0
Joined: January 19th, 2004, 12:34 pm

Hello World in all Languages, post here

March 16th, 2006, 8:05 pm

PostScript:/Times-Roman findfont12 scalefontsetfontnewpath72 72 moveto(Hello world!) showshowpageI had to look it up, though
 
User avatar
lballabio
Posts: 0
Joined: January 19th, 2004, 12:34 pm

Hello World in all Languages, post here

March 16th, 2006, 8:18 pm

INTERCAL (thanks Heaven for Google):DO ,1 <- #13PLEASE DO ,1 SUB #1 <- #234DO ,1 SUB #2 <- #112DO ,1 SUB #3 <- #112DO ,1 SUB #4 <- #0DO ,1 SUB #5 <- #64DO ,1 SUB #6 <- #194DO ,1 SUB #7 <- #48PLEASE DO ,1 SUB #8 <- #22DO ,1 SUB #9 <- #248DO ,1 SUB #10 <- #168DO ,1 SUB #11 <- #24DO ,1 SUB #12 <- #16DO ,1 SUB #13 <- #214PLEASE READ OUT ,1PLEASE GIVE UPWe can now turn to mainstream languages
 
User avatar
Alan
Posts: 2958
Joined: December 19th, 2001, 4:01 am
Location: California
Contact:

Hello World in all Languages, post here

March 16th, 2006, 8:56 pm

(3-rotor enigma): rmzwfqaqsb!
Last edited by Alan on March 15th, 2006, 11:00 pm, edited 1 time in total.
 
User avatar
cksh2005
Posts: 0
Joined: December 13th, 2005, 10:59 pm

Hello World in all Languages, post here

March 16th, 2006, 11:23 pm

New to C++ (still don't quite understand why I need to pass thepnt by reference...)#include <stdafx.h>#include <iostream>#include <string>using namespace std;template <class T> class Hello{public: Hello (); Hello (Hello&); Hello (T x); ~Hello (); T getX() const; void setX(T d);private: T itsX;};template <class T>Hello<T>::Hello():itsX("Hello"){}template <class T>Hello<T>::Hello(Hello&){}template <class T>Hello<T>::Hello(T x):itsX(x){}template <class T>void Hello<T>::setX(T d){ itsX=d;}template <class T>T Hello<T>::getX() const{ return itsX;}template <class T>Hello<T>::~Hello(){}template <class T>void myfunc(const Hello<T>& thepnt);int main(){ Hello<string> pnt; myfunc(pnt); return 0;}template <class T>void myfunc(const Hello<T>& thepnt){ Hello<string> thepnt2; thepnt2.setX(" World"); cout << thepnt.getX()<< thepnt2.getX()<<endl;}Text
 
User avatar
adcockj
Posts: 1
Joined: July 14th, 2002, 3:00 am

Hello World in all Languages, post here

March 17th, 2006, 7:38 am

PL/1World: Procedure options(main); Put List( 'Hello world' ); End World;
 
User avatar
adcockj
Posts: 1
Joined: July 14th, 2002, 3:00 am

Hello World in all Languages, post here

March 17th, 2006, 7:43 am

Pascalprogram HelloWorldbegin writeln('Hello, World!')end.
 
User avatar
adcockj
Posts: 1
Joined: July 14th, 2002, 3:00 am

Hello World in all Languages, post here

March 17th, 2006, 7:48 am

x86 assembler(nasm)
 
User avatar
Cuchulainn
Topic Author
Posts: 20250
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

Hello World in all Languages, post here

March 17th, 2006, 7:55 am

hello world ad nauseum in BASIC10 PRINT "HELLO WORLD"20 GOTO 10P.S. Now, that GOTO was not so harmful, was it
 
User avatar
Cuchulainn
Topic Author
Posts: 20250
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

Hello World in all Languages, post here

March 17th, 2006, 8:04 am

FORTRANcc Hello, world.c Program Hello implicit none logical DONE DO while (.NOT. DONE) write(*,10) END DO 10 format('Hello, world.') END
 
User avatar
Cuchulainn
Topic Author
Posts: 20250
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

Hello World in all Languages, post here

March 17th, 2006, 8:06 am

JudoScript// Hello World in JudoScript (a Java scripting layer). "Hello World";
 
User avatar
lballabio
Posts: 0
Joined: January 19th, 2004, 12:34 pm

Hello World in all Languages, post here

March 17th, 2006, 7:30 pm

More languages than you can shake a string at: this page
 
User avatar
ntruwant
Posts: 0
Joined: August 3rd, 2004, 9:50 am

Hello World in all Languages, post here

March 18th, 2006, 12:40 pm

SAS:%put Hello World;