•
•
•
•
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
![]() |
•
•
Join Date: Oct 2004
Location: Mojave Desert
Posts: 2,414
Reputation:
Rep Power: 9
Solved Threads: 173
One more for the chelonians ...
print [Hello World! in Logo]
May 'the Google' be with you!
•
•
Join Date: Oct 2004
Location: Mojave Desert
Posts: 2,414
Reputation:
Rep Power: 9
Solved Threads: 173
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 ...
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!
•
•
Join Date: Oct 2004
Location: Mojave Desert
Posts: 2,414
Reputation:
Rep Power: 9
Solved Threads: 173
Another Ada example, actually quite a modern language ...
Ada is a high security language and nobly endeavors to reduce mistakes. Does anyone know what Ada stands for?
with Ada.Text_IO;
use Ada.Text_IO; -- searches Ada.Text_IO
procedure Hello95 is
begin
Put_Line("Hello world! using Ada95");
end Hello95; May 'the Google' be with you!
•
•
Join Date: Oct 2004
Location: Mojave Desert
Posts: 2,414
Reputation:
Rep Power: 9
Solved Threads: 173
A contribution from the wild and crazy bunch at BCX basic. Rather than just vapidly coding ...
they want to exercise the old Windows box a little ...
print "Hello World! in BCX basic"
' 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!
•
•
Join Date: Jul 2004
Location: North East Indiana
Posts: 491
Reputation:
Rep Power: 5
Solved Threads: 20
•
•
•
•
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.
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.
•
•
Join Date: Oct 2004
Location: Mojave Desert
Posts: 2,414
Reputation:
Rep Power: 9
Solved Threads: 173
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 ...
Let's hope the next language is not named after the malady ...
w !,"Hello World! in Mumps"
May 'the Google' be with you!
•
•
Join Date: Oct 2004
Location: Mojave Desert
Posts: 2,414
Reputation:
Rep Power: 9
Solved Threads: 173
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!
Here's the hello world program in Rain:
In Bool****:
Hello, world!
In Bool****:
;;;+;+;;+;+; +;+;+;+;;+;;+; ;;+;;+;+;;+; ;;+;;+;+;;+; +;;;;+;+;;+; ;;+;;+;+;+;; ;;;;;+;+;; +;;;+;+;;;+; +;;;;+;+;;+; ;+;+;;+;;;+; ;;+;;+;+;;+; ;;+;+;;+;;+; +;+;;;;+;+;; ;+;+;+;
•
•
Join Date: Jul 2005
Location: Illinois, USA
Posts: 43
Reputation:
Rep Power: 4
Solved Threads: 0
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 Geek and a Half Blog
A few examples to show how easy this is to accomplish in Assembly Language:
A) Linux console using GAS:
ASSEMBLE: as -o hello.o hello.S
LINK: ld -o hello hello.o
B) Linux console using NASM:
C) Win32 & Linux console using High Level Assembler (HLA):
BUILD: HLA -v Hello
D) Win32 GUI using MASM32:
EASY, HUH?
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 $ - msgC) 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?
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb Legacy and Other Languages Marketplace
- Previous Thread: Manipulating strings with Common Lisp
- Next Thread: Scheme Help



Linear Mode