aboutsummaryrefslogblamecommitdiff
path: root/bugs-fixed/getline-numeric.awk
blob: 5571a9589a3d29e5718068def4d46ed1fd1718af (plain) (tree)
1
2
3
4
5
6





                                         
{
    print $0, ($0 <= 50 ? "<=" : ">"), 50
    getline dd < ARGV[1]
    print dd, (dd <= 50 ? "<=" : ">"), 50
    if (dd == $0) print "same"
}