[t][TT #1610] Add tests for Parrot_compile_string
[parrot.git] / examples / pasm / trace.pasm
blob6d325276ed599f7252384226a6797f3948c41012
1 # Copyright (C) 2001-2003, Parrot Foundation.
2 # $Id$
4 =head1 NAME
6 examples/pasm/trace.pasm - Tracing
8 =head1 SYNOPSIS
10     % ./parrot examples/pasm/trace.pasm
12 =head1 DESCRIPTION
14 Shows you what happens when you turn on tracing.
16 =cut
18 sweepoff
19 print "Howdy!\n"
20 trace 1
21 print "There!\n"
22 trace 0
23 print "Partner!\n"
24 end
26 # Local Variables:
27 #   mode: pir
28 #   fill-column: 100
29 # End:
30 # vim: expandtab shiftwidth=4 ft=pir: