1*3ee4fc2aSCody Peter Mellofunction foo() {
2*3ee4fc2aSCody Peter Mello    a = "";
3*3ee4fc2aSCody Peter Mello    for (i = 0; i < 10000; i++) {
4*3ee4fc2aSCody Peter Mello        a = a "c";
5*3ee4fc2aSCody Peter Mello    }
6*3ee4fc2aSCody Peter Mello    return a;
7*3ee4fc2aSCody Peter Mello}
8*3ee4fc2aSCody Peter Mello
9*3ee4fc2aSCody Peter MelloBEGIN {
10*3ee4fc2aSCody Peter Mello    FS = foo();
11*3ee4fc2aSCody Peter Mello    $0="foo";
12*3ee4fc2aSCody Peter Mello    print $1;
13*3ee4fc2aSCody Peter Mello}
14