A multilingual coded Hello World! thread

Reply

Join Date: Oct 2004
Posts: 4,009
Reputation: vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice 
Solved Threads: 929
Moderator
vegaseat's Avatar
vegaseat vegaseat is offline Offline
DaniWeb's Hypocrite

Re: A multilingual coded Hello World! thread

 
0
  #11
Mar 10th, 2005
Here is "Hello World!" using tcl scripting:
[php]
label .label -text "Hello World! in tcl script"
pack .label
[/php]
Did you know Python can run tcl script easily?
[php]
# Python23

import Tkinter

root = Tkinter.Tk()
tclScript = """
# here is a tcl script
label .label -text "Hello World! in tcl script"
pack .label
"""
root.tk.call('eval', tclScript)
root.mainloop()
[/php]
May 'the Google' be with you!
Reply With Quote Quick reply to this message  
Join Date: Apr 2004
Posts: 4,358
Reputation: Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future 
Solved Threads: 237
Team Colleague
Dave Sinkula's Avatar
Dave Sinkula Dave Sinkula is offline Offline
long time no c

Re: A multilingual coded Hello World! thread

 
0
  #12
Mar 10th, 2005
"One of the methods used by statists to destroy capitalism consists in establishing controls that tie a given industry hand and foot, making it unable to solve its problems, then declaring that freedom has failed and stronger controls are necessary." --Ayn Rand
Reply With Quote Quick reply to this message  
Join Date: Aug 2004
Posts: 780
Reputation: OurNation is an unknown quantity at this point 
Solved Threads: 9
OurNation's Avatar
OurNation OurNation is offline Offline
Master Poster

Re: A multilingual coded Hello World! thread

 
0
  #13
Mar 10th, 2005
How come no one did python??
PETA People for the Eating of Tasty Animals.


FireFox
Hijack This
Ad-Aware
Hijack this tutorial
Microsoft AntiSpyware
CompUchat
Reply With Quote Quick reply to this message  
Join Date: Jul 2003
Posts: 117
Reputation: Iron_Cross is an unknown quantity at this point 
Solved Threads: 2
Iron_Cross's Avatar
Iron_Cross Iron_Cross is offline Offline
Junior Poster

Re: A multilingual coded Hello World! thread

 
0
  #14
Mar 10th, 2005
elitehackers.info
Today's Penny-Arcade!
Pain is weakness leaving the body!
Reply With Quote Quick reply to this message  
Join Date: Oct 2004
Posts: 4,009
Reputation: vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice 
Solved Threads: 929
Moderator
vegaseat's Avatar
vegaseat vegaseat is offline Offline
DaniWeb's Hypocrite

Re: A multilingual coded Hello World! thread

 
0
  #15
Mar 11th, 2005
Originally Posted by OurNation
How come no one did python??
Be my guest!

Here is a rare one:
[php]
main( )
{
putchar('Hello World! in B language, the one that came before C');
}
[/php]
May 'the Google' be with you!
Reply With Quote Quick reply to this message  
Join Date: Oct 2004
Posts: 4,009
Reputation: vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice 
Solved Threads: 929
Moderator
vegaseat's Avatar
vegaseat vegaseat is offline Offline
DaniWeb's Hypocrite

Re: A multilingual coded Hello World! thread

 
0
  #16
Mar 11th, 2005
Originally Posted by Iron_Cross
http://www2.latech.edu/~acm/HelloWorld.shtml
Hmm! You and Dave must veritably know how to google! I am dazzled.

Well here is a real oldy ...
[php]
IDENTIFICATION DIVISION.
PROGRAM-ID. Hello.
ENVIRONMENT DIVISION.
DATA DIVISION.
PROCEDURE DIVISION.
MAIN SECTION.
Display 'Hello World! in COBOL'.
STOP RUN.
[/php]
May 'the Google' be with you!
Reply With Quote Quick reply to this message  
Join Date: Oct 2004
Posts: 4,009
Reputation: vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice 
Solved Threads: 929
Moderator
vegaseat's Avatar
vegaseat vegaseat is offline Offline
DaniWeb's Hypocrite

Re: A multilingual coded Hello World! thread

 
0
  #17
Mar 11th, 2005
From a very shy Lisp person ...
[php]
(write-line "Hello World! in Common-Lisp")
[/php]
May 'the Google' be with you!
Reply With Quote Quick reply to this message  
Join Date: Oct 2004
Posts: 4,009
Reputation: vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice 
Solved Threads: 929
Moderator
vegaseat's Avatar
vegaseat vegaseat is offline Offline
DaniWeb's Hypocrite

Re: A multilingual coded Hello World! thread

 
0
  #18
Mar 12th, 2005
A visit back to the early days of programming ...
; Hello World for Intel Assembler (MSDOS)
mov ax,cs
mov ds,ax
mov ah,9
mov dx, offset Hello
int 21h
xor ax,ax
int 21h

Hello:
  db "Hello World! in Intel asm",13,10,"$"
May 'the Google' be with you!
Reply With Quote Quick reply to this message  
Join Date: Oct 2004
Posts: 4,009
Reputation: vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice 
Solved Threads: 929
Moderator
vegaseat's Avatar
vegaseat vegaseat is offline Offline
DaniWeb's Hypocrite

Re: A multilingual coded Hello World! thread

 
0
  #19
Mar 15th, 2005
Contribution from Bud Tugly, a guy who still writes Fortran programs ...
PROGRAM HELLO
PRINT*, 'Hello World! in Fortran77'
END
May 'the Google' be with you!
Reply With Quote Quick reply to this message  
Join Date: Oct 2004
Posts: 4,009
Reputation: vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice 
Solved Threads: 929
Moderator
vegaseat's Avatar
vegaseat vegaseat is offline Offline
DaniWeb's Hypocrite

Re: A multilingual coded Hello World! thread

 
0
  #20
Mar 19th, 2005
From Brazil comes the interesting language Lua
(Portuguese for moon). I am having fun with Lua!
[php]
io.write("Hello World! using Lua 5.0")
-- or
print("Hello World!")
[/php]

Why not try a scripting language like ColdFusion?
<cfscript>
  WriteOutput("Hello World! in ColdFusion script");
</cfscript>

Can this be true?
import std.c.stdio;
void main()
{
  printf("Hello, World! in D language");
}

From one of the many Schemers ...
(define hello 
  (lambda ()
    (display "Hello World! in Scheme")))

Belatedly a contribution from the Senior Home:
10 REM Hello World in MBASIC
20 PRINT "Hello World! in MBASIC"
May 'the Google' be with you!
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Other Threads in the Legacy and Other Languages Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC