June 2018 Update

This commit is contained in:
Ingy döt Net 2018-06-22 20:57:24 +00:00
parent ba8067c3b7
commit 22f33d4004
5278 changed files with 84726 additions and 14379 deletions

View file

@ -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.

View file

@ -0,0 +1,6 @@
#include<stdio.h>
int main()
{
return printf("\nHello World!");
}

View file

@ -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!")

View file

@ -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

View file

@ -1,3 +1 @@
message :: String
message = "Hello world!"
main = putStrLn message
main = putStrLn "Hello world!"

View file

@ -0,0 +1 @@
"Hello world!\n";

View file

@ -0,0 +1 @@
Hello world!

View 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;

View file

@ -0,0 +1,3 @@
fn main () {
print!("Hello world!");
}

View file

@ -1 +1 @@
WScript.Echo("Hello world!")
WScript.Echo "Hello world!"

View file

@ -0,0 +1,7 @@
Imports System
Module HelloWorld
Sub Main()
Console.WriteLine("Hello world!")
End Sub
End Module