~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to test/header.awk

  • Committer: Arnold D. Robbins
  • Date: 2010-07-16 09:41:09 UTC
  • Revision ID: git-v1:8c042f99cc7465c86351d21331a129111b75345d
Tags: gawk-3.0.0
Move to gawk-3.0.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
BEGIN{
2
 
        "date" | getline cur_time
3
 
        close ("date")
4
 
        print "This line printed on", cur_time
5
 
}