| | |
A multilingual coded Hello World! thread
![]() |
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]
[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!
"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
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
FireFox
Hijack This
Ad-Aware
Hijack this tutorial
Microsoft AntiSpyware
CompUchat
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]
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!
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!
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!
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?
Can this be true?
From one of the many Schemers ...
Belatedly a contribution from the Senior Home:
(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!
![]() |
Other Threads in the Legacy and Other Languages Forum
- Previous Thread: Manipulating strings with Common Lisp
- Next Thread: Scheme Help
| Thread Tools | Search this Thread |






