June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
|
|
@ -2,8 +2,8 @@
|
|||
; String printing limited to strings of 256 characters or less.
|
||||
|
||||
a_cr = $0d ; Carriage return.
|
||||
bsout = $ffd2 ; KERNAL ROM, output a character to current device.
|
||||
|
||||
bsout = $ffd2 ; C64 KERNAL ROM, output a character to current device.
|
||||
; use $fded for Apple 2
|
||||
.code
|
||||
|
||||
ldx #0 ; Starting index 0 in X register.
|
||||
|
|
|
|||
6
Task/Hello-world-Text/C/hello-world-text-4.c
Normal file
6
Task/Hello-world-Text/C/hello-world-text-4.c
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#include<stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
return printf("\nHello World!");
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
;; Project : Hello world/Text
|
||||
;; Date : 2018/03/05
|
||||
;; Author : Gal Zsolt [~ CalmoSoft ~]
|
||||
;; Email : <calmosoft@gmail.com>
|
||||
|
||||
(format t "~a" "Hello world!")
|
||||
|
|
@ -1,16 +1,2 @@
|
|||
'FreeBASIC Hello-fb0.bas May 2015
|
||||
'
|
||||
Screen 0 'open text window
|
||||
Print "Hello world"
|
||||
|
||||
Print "Enter any key to go the graphics screen"
|
||||
? "Hello world!"
|
||||
sleep
|
||||
|
||||
screen 18 'Screen 18 Resolution 640x480 with at least 256 colors
|
||||
locate 10,10
|
||||
Print "Hello world!"
|
||||
|
||||
locate 20,10
|
||||
Print "Enter any key to exit"
|
||||
sleep
|
||||
End
|
||||
|
|
|
|||
|
|
@ -1,3 +1 @@
|
|||
message :: String
|
||||
message = "Hello world!"
|
||||
main = putStrLn message
|
||||
main = putStrLn "Hello world!"
|
||||
|
|
|
|||
1
Task/Hello-world-Text/HolyC/hello-world-text.holyc
Normal file
1
Task/Hello-world-Text/HolyC/hello-world-text.holyc
Normal file
|
|
@ -0,0 +1 @@
|
|||
"Hello world!\n";
|
||||
1
Task/Hello-world-Text/N-t-roff/hello-world-text.n
Normal file
1
Task/Hello-world-Text/N-t-roff/hello-world-text.n
Normal file
|
|
@ -0,0 +1 @@
|
|||
Hello world!
|
||||
8
Task/Hello-world-Text/PL-M/hello-world-text.plm
Normal file
8
Task/Hello-world-Text/PL-M/hello-world-text.plm
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
HELLO_WORLD: DO;
|
||||
/* external I/O routines */
|
||||
WRITE$STRING: PROCEDURE( S ) EXTERNAL; DECLARE S POINTER; END WRITE$STRING;
|
||||
/* end external routines */
|
||||
MAIN: PROCEDURE;
|
||||
CALL WRITE$STRING( @( 'Hello world!', 0AH, 0 ) );
|
||||
END MAIN;
|
||||
END HELLO_WORLD;
|
||||
3
Task/Hello-world-Text/Rust/hello-world-text-1.rust
Normal file
3
Task/Hello-world-Text/Rust/hello-world-text-1.rust
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fn main () {
|
||||
print!("Hello world!");
|
||||
}
|
||||
|
|
@ -1 +1 @@
|
|||
WScript.Echo("Hello world!")
|
||||
WScript.Echo "Hello world!"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
Imports System
|
||||
|
||||
Module HelloWorld
|
||||
Sub Main()
|
||||
Console.WriteLine("Hello world!")
|
||||
End Sub
|
||||
End Module
|
||||
Loading…
Add table
Add a link
Reference in a new issue