No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- #!/usr/bin/gawk -f
- # mawk does not work, it hangs due to the one-sided FIFO
- {
- if (n++ > 1234567) {
- print "quit";
- }
- }
- /bet\?/ {
- print "1"
- fflush()
- }
- /insurance\?/ {
- print "no"
- fflush()
- }
- /play\?/ {
- if ($2 < 12) {
- print "hit";
- } else {
- print "stand";
- }
- fflush()
- }
- /bye/ {
- exit;
- }
|