Current File : //usr/share/lib/java/javadoc/dtrace/examples/hello.d
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
dtrace:::BEGIN
{
trace("hello, world");
exit(0);
}