JanetDocsSourcePlaygroundI'm feeling luckyCommunityGitHub sign in

os/sleep

core-api


    cfunction
    src/core/os.c on line 1629, column 1

    (os/sleep n)

    Suspend the program for `n` seconds. `n` can be a real number. 
    Returns nil.


1 exampleSign in to add an example
Loading...
(os/sleep 1)    # => nil
(os/sleep 0.1)  # => nil
(os/sleep 0)    # => nil
cellularmitosisPlayground