๐Ÿ“ฆ sleepyfran / duets

๐Ÿ“„ VisualEffects.fs ยท 11 lines
1
2
3
4
5
6
7
8
9
10
11[<AutoOpen>]
module Duets.Cli.Components.VisualEffects

[<Measure>]
type millisecond

/// Stops the execution of the CLI for the given amount of seconds. Used to
/// provide a little dramatic pause.
let wait (amount: int<millisecond>) =
    System.Threading.Thread.Sleep(amount / 1<millisecond>)