JanetDocsPlaygroundI'm feeling luckyGitHub sign in

os/sleep



    cfunction
    src/core/os.c on line 1250, 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