Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
send(@display, inform, 'Goodbye, World !').
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
goodbye :-
|
||||
new(D, window('Goodbye')),
|
||||
send(D, size, size(250, 100)),
|
||||
new(S, string("Goodbye, World !")),
|
||||
new(T, text(S)),
|
||||
get(@display, label_font, F),
|
||||
get(F, width(S), M),
|
||||
XT is (250 - M)/2,
|
||||
get(F, height, H),
|
||||
YT = (100-H)/2,
|
||||
send(D, display, T, point(XT, YT)),
|
||||
send(D, open).
|
||||
Loading…
Add table
Add a link
Reference in a new issue