An open API service indexing awesome lists of open source software.

https://github.com/tkf/terminators.jl


https://github.com/tkf/terminators.jl

Last synced: 3 months ago
JSON representation

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
```