JanetDocsPlaygroundI'm feeling luckyGitHub sign in

ev/call



    function
    boot.janet on line 3553, column 3

    (ev/call f & args)

    Call a function asynchronously. Returns a fiber that is scheduled 
    to run the function.


See also:ev/spawn1 exampleSign in to add an example
Loading...
(ev/call print 10)
(ev/sleep 0.0001) # give ev a chance in the REPL, remove in file
# => prints 10
pepePlayground