https://github.com/tkf/terminators.jl
https://github.com/tkf/terminators.jl
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tkf/terminators.jl
- Owner: tkf
- License: mit
- Created: 2021-08-12T21:04:31.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-27T18:25:13.000Z (over 4 years ago)
- Last Synced: 2025-09-21T02:27:47.372Z (4 months ago)
- Language: Julia
- Size: 12.7 KB
- Stars: 11
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terminators.jl: adding timeout to your code
```julia
using Terminators
Terminators.withtimeout(1) do
sleep(3) # too slow, the process will be terminated
end
```