Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
21
Task/Hello-world-Graphical/Seed7/hello-world-graphical.seed7
Normal file
21
Task/Hello-world-Graphical/Seed7/hello-world-graphical.seed7
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
$ include "seed7_05.s7i";
|
||||
include "draw.s7i";
|
||||
include "keybd.s7i";
|
||||
include "bitmapfont.s7i";
|
||||
include "stdfont24.s7i";
|
||||
include "pixmap_file.s7i";
|
||||
|
||||
const proc: main is func
|
||||
local
|
||||
var text: screen is STD_NULL;
|
||||
begin
|
||||
screen(400, 100);
|
||||
clear(curr_win, white);
|
||||
KEYBOARD := GRAPH_KEYBOARD;
|
||||
screen := openPixmapFontFile(curr_win);
|
||||
color(screen, black, white);
|
||||
setFont(screen, stdFont24);
|
||||
setPosXY(screen, 68, 60);
|
||||
write(screen, "Goodbye, World");
|
||||
ignore(getc(KEYBOARD));
|
||||
end func;
|
||||
Loading…
Add table
Add a link
Reference in a new issue