Update README.md

This commit is contained in:
2024-12-20 05:37:24 +00:00
parent 34ec8b6652
commit eec232c3e6

View File

@@ -3,3 +3,9 @@
ln -s $(pwd)/wiki/linux-bash/bash_aliases.sh ~/.bash_aliases
source "$HOME/.${SHELL##*/}rc"
```
## ThreadPoolExecutor
```py
__import__('concurrent').futures.ThreadPoolExecutor().submit(
lambda x: (print(x * 2) or x ** 2 / 0), 3).result()
```