Merge branch 'master' of git://github.com/bkerley/hello-world

This commit is contained in:
Clive Crous
2008-07-23 12:31:36 +02:00
6 changed files with 25 additions and 0 deletions

3
OpenLaszlo.lzx Normal file
View File

@@ -0,0 +1,3 @@
<canvas>
<text>Hello World!</text>
</canvas>

5
dtrace.d Normal file
View File

@@ -0,0 +1,5 @@
#!/usr/sbin/dtrace -qs
BEGIN {
printf("Hello World");
exit(0);
}

3
muf.muf Normal file
View File

@@ -0,0 +1,3 @@
: main
me @ "Hello World" notify
;

2
postscript.ps Normal file
View File

@@ -0,0 +1,2 @@
% run> gs -q -sDEVICE=nullpage postscript.ps
(Hello world!\n) print quit

11
postscript_page.ps Normal file
View File

@@ -0,0 +1,11 @@
% run> gs -q postscript_page.ps
/pt {72 div} def
/y 9 def
/textdraw {/Courier findfont 12 pt scalefont setfont 8 pt y moveto show} def
72 72 scale
0 0 0 setrgbcolor
(Hello world!) textdraw
showpage
quit

1
prolog.pro Normal file
View File

@@ -0,0 +1 @@
write('Hello World').