1 # Copyright (C) 2010, Parrot Foundation.
4 # Generate a skeleton PIR file that adheres to parrot developer standards.
5 # intended for people who hack on parrot itself, not users of parrot.
12 .local int epoch, year
14 timeArray = decodetime epoch
15 year = timeArray[.TM_YEAR]
17 # split up to avoid various svn/codingstd issues.
18 print '# Copyright (C) '
20 say ' Parrot Foundation.'
24 say ".sub 'main' :main"
25 say ' # For Parrot developers.'
28 say '# Local Variables:'
30 say '# fill-column: 100'
32 say '# vim: expandtab shiftwidth=4 ft=pir:'
39 # vim: expandtab shiftwidth=4 ft=pir: