TODO: stupid console game. Write 2 programs that print to stdout such that the...
TODO: stupid console game. Write 2 programs that print to stdout such that the 2nd on in the following bash finishes first.
```bash
echo "stick 1" & echo "stick 2"
```
On my machine, "stick 1" always finishes first.
This is inspired by Winnie the Pooh sticks, which pass under a bridge.
Self-replies
Bash beats python
```bash
python -c "print('stick 1')" & echo "stick 2"
```
Python wins!
```bash
(echo "System.out.println(\"stick 2\");" | jshell) & python -c "print('stick 1')"
```