summary refs log tree commit diff
path: root/test/test.awk
blob: ef6df2061f89b2a48ae0cb5c1e35a98f14b713cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
BEGIN {
  print "#!/usr/bin/expect -f"
  print "spawn fennel main.fnl"
}

{ print "expect -re \"Player .'s turn:\""
  print "send -- \"" $0 "\\r\""
}

END {
  print "interact"
}