User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the Legacy and Other Languages section within the Software Development category of DaniWeb, a massive community of 397,768 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,471 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Legacy and Other Languages advertiser:
Views: 24856 | Replies: 90
Reply
Join Date: Oct 2004
Location: Mojave Desert
Posts: 2,414
Reputation: vegaseat will become famous soon enough vegaseat will become famous soon enough 
Rep Power: 9
Solved Threads: 173
Moderator
vegaseat's Avatar
vegaseat vegaseat is offline Offline
Kickbutt Moderator

Solution Re: A multilingual coded Hello World! thread

  #41  
May 1st, 2005
One more for the chelonians ...
print [Hello World! in Logo]
May 'the Google' be with you!
Reply With Quote  
Join Date: Oct 2004
Location: Mojave Desert
Posts: 2,414
Reputation: vegaseat will become famous soon enough vegaseat will become famous soon enough 
Rep Power: 9
Solved Threads: 173
Moderator
vegaseat's Avatar
vegaseat vegaseat is offline Offline
Kickbutt Moderator

Solution Re: A multilingual coded Hello World! thread

  #42  
May 6th, 2005
What does ADA stand for? American Dental Agency? Americans with Disabilities Act? What do they have to do with programming? It's Ada, not ADA. (Ada programmers tend to be picky about this.)

No wonder my dentist looked at me funny when I asked him for the Ada code. Never got the code, but he charged me an extra 55 bucks. Got this code from my barber ...
@ "Hello World! in Clipper"
May 'the Google' be with you!
Reply With Quote  
Join Date: Oct 2004
Location: Mojave Desert
Posts: 2,414
Reputation: vegaseat will become famous soon enough vegaseat will become famous soon enough 
Rep Power: 9
Solved Threads: 173
Moderator
vegaseat's Avatar
vegaseat vegaseat is offline Offline
Kickbutt Moderator

Solution Re: A multilingual coded Hello World! thread

  #43  
May 7th, 2005
Another Ada example, actually quite a modern language ...
with Ada.Text_IO;
use Ada.Text_IO;  -- searches Ada.Text_IO
procedure Hello95 is
begin
 Put_Line("Hello world! using Ada95");
end Hello95;
Ada is a high security language and nobly endeavors to reduce mistakes. Does anyone know what Ada stands for?
May 'the Google' be with you!
Reply With Quote  
Join Date: Oct 2004
Location: Mojave Desert
Posts: 2,414
Reputation: vegaseat will become famous soon enough vegaseat will become famous soon enough 
Rep Power: 9
Solved Threads: 173
Moderator
vegaseat's Avatar
vegaseat vegaseat is offline Offline
Kickbutt Moderator

Solution Re: A multilingual coded Hello World! thread

  #44  
May 10th, 2005
A contribution from the wild and crazy bunch at BCX basic. Rather than just vapidly coding ...
print "Hello World! in BCX basic"
they want to exercise the old Windows box a little ...
' save hello world to a file
open "hello.txt" for output  as  fp1
  fprint fp1, "Hello World! in bcx basic"
close fp1

' and show it in notepad
run "notepad.exe hello.txt"
May 'the Google' be with you!
Reply With Quote  
Join Date: Jul 2004
Location: North East Indiana
Posts: 491
Reputation: Puckdropper is an unknown quantity at this point 
Rep Power: 5
Solved Threads: 20
Puckdropper Puckdropper is offline Offline
Posting Pro in Training

Re: A multilingual coded Hello World! thread

  #45  
May 13th, 2005
Originally Posted by vegaseat

*snip*

Ada is a high security language and nobly endeavors to reduce mistakes. Does anyone know what Ada stands for?

Ada doesn't stand for anything. It's one of the few places in computer science where there's no acryonym... Ada is named after Countess Augusta Ada Lovelace, the first computer programmer.
www.uncreativelabs.net

Old computers are getting to be a lost art. Here at Uncreative Labs, we still enjoy using the old computers. Sometimes we want to see how far a particular system can go, other times we use a stock system to remind ourselves of what we once had.
Reply With Quote  
Join Date: Oct 2004
Location: Mojave Desert
Posts: 2,414
Reputation: vegaseat will become famous soon enough vegaseat will become famous soon enough 
Rep Power: 9
Solved Threads: 173
Moderator
vegaseat's Avatar
vegaseat vegaseat is offline Offline
Kickbutt Moderator

Solution Re: A multilingual coded Hello World! thread

  #46  
May 13th, 2005
Way back in my programming days I heard of Ada being named for some lady's first name. I googled for it, but couldn't get the answer. So thanks Puckdropper!

Let's hope the next language is not named after the malady ...
w !,"Hello World! in Mumps"
May 'the Google' be with you!
Reply With Quote  
Join Date: Oct 2004
Location: Mojave Desert
Posts: 2,414
Reputation: vegaseat will become famous soon enough vegaseat will become famous soon enough 
Rep Power: 9
Solved Threads: 173
Moderator
vegaseat's Avatar
vegaseat vegaseat is offline Offline
Kickbutt Moderator

Re: A multilingual coded Hello World! thread

  #47  
Jul 24th, 2005
The Nice language is based on Java, but has adopted some Python features.
void main(String[] args){ 
   println("Hello World! in Nice");
}
May 'the Google' be with you!
Reply With Quote  
Join Date: Jun 2005
Location: Troy
Posts: 1,277
Reputation: Rashakil Fol has a spectacular aura about Rashakil Fol has a spectacular aura about 
Rep Power: 7
Solved Threads: 36
Colleague
Rashakil Fol's Avatar
Rashakil Fol Rashakil Fol is offline Offline
Salamander Man

Re: A multilingual coded Hello World! thread

  #48  
Jul 27th, 2005
Here's the hello world program in Rain:

Hello, world!

In Bool****:

;;;+;+;;+;+;
+;+;+;+;;+;;+;
;;+;;+;+;;+;
;;+;;+;+;;+;
+;;;;+;+;;+;
;;+;;+;+;+;;
;;;;;+;+;;
+;;;+;+;;;+;
+;;;;+;+;;+;
;+;+;;+;;;+;
;;+;;+;+;;+;
;;+;+;;+;;+;
+;+;;;;+;+;;
;+;+;+;
Reply With Quote  
Join Date: Jul 2005
Location: Illinois, USA
Posts: 43
Reputation: Sp!ke is an unknown quantity at this point 
Rep Power: 4
Solved Threads: 0
Sp!ke's Avatar
Sp!ke Sp!ke is offline Offline
Light Poster

Re: A multilingual coded Hello World! thread

  #49  
Aug 1st, 2005
Gah! Did I misread (happens a lot), or did we forget the trusty and classic Visual Basic 6?
Option Explicit
Private Sub Form_Load()
     Print "Hello, World! in VB6"
End Sub
Reply With Quote  
Join Date: Mar 2005
Posts: 90
Reputation: Evenbit is on a distinguished road 
Rep Power: 4
Solved Threads: 2
Evenbit's Avatar
Evenbit Evenbit is offline Offline
Junior Poster in Training

Re: A multilingual coded Hello World! thread

  #50  
Aug 9th, 2005
A few examples to show how easy this is to accomplish in Assembly Language:

A) Linux console using GAS:

.text
.global _start
_start:
    movl    $4, %eax
    movl    $1, %ebx
    movl    $hello, %ecx
    movl    $14, %edx
    int $0x80

    movl    $1, %eax
    int $0x80

hello:  .string "Hello, world!\n"


ASSEMBLE: as -o hello.o hello.S
LINK: ld -o hello hello.o

B) Linux console using NASM:

;--------------------
; nasm -f elf hw.asm
; ld -s -o hw hw.o
;---------------------

global _start

section code read exec
_start:

     mov eax, 4
     mov ebx, 1
     mov ecx, msg
     mov edx, length
     int 80h

     mov eax, 1
     xor ebx, ebx
     int 80h

msg db 'Hello, world!', 10
length equ $ - msg


C) Win32 & Linux console using High Level Assembler (HLA):

program Hello;
#include( "stdlib.hhf" )

begin Hello;

stdout.puts( "Hello, world!" nl );

end Hello;


BUILD: HLA -v Hello

D) Win32 GUI using MASM32:

.386
.model flat, stdcall
option casemap:none
include \masm32\include\windows.inc
include \masm32\include\kernel32.inc
include \masm32\include\user32.inc
includelib \masm32\lib\user32.lib
includelib \masm32\lib\kernel32.lib

.data
MsgCaption      db "100% ASM Win32 GUI applet",0
MsgBoxText      db "Hello, world!",0

.code
start:
	invoke MessageBox, NULL,addr MsgBoxText, addr MsgCaption, MB_OK
	invoke ExitProcess,NULL
end start



EASY, HUH?
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

DaniWeb Legacy and Other Languages Marketplace
Thread Tools Display Modes

Other Threads in the Legacy and Other Languages Forum

All times are GMT -4. The time now is 4:17 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC