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

This commit is contained in:
Bryce Kerley
2008-07-22 22:55:30 -04:00

5
dtrace.d Normal file
View File

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