Reply to Re: The BIG brother of BASIC --- DarkBASIC
If you don't have an account, just leave the password field blank.
But if you want the maximum control over your box using a low-level language, try Assembly:
org 100h
jmp START
hello db "Hello Dink Network!",13,10,"$"
START: mov AX,CS
mov DS,AX
mov AH,9
mov DX,hello
int 21h
ret
EDIT: RRGH, why won't this stupid form keep spaces intact?
org 100h
jmp START
hello db "Hello Dink Network!",13,10,"$"
START: mov AX,CS
mov DS,AX
mov AH,9
mov DX,hello
int 21h
ret

EDIT: RRGH, why won't this stupid form keep spaces intact?