Skip to content

Instantly share code, notes, and snippets.

View chriswilkinsoncodes's full-sized avatar
✈️
where to next?

chris wilkinson chriswilkinsoncodes

✈️
where to next?
View GitHub Profile
@chriswilkinsoncodes
chriswilkinsoncodes / hello.pas
Created October 16, 2020 03:03
Simple Pascal program structure - Doug Cooper version of "hello, world" (from Oh! Pascal!)
program FirstRun (output);
{This is our first program.}
begin
writeln('Hello, I love you.')
end.