dust/examples/async_commands.ds

18 lines
199 B
Plaintext
Raw Normal View History

async {
{
2024-01-30 05:11:45 +00:00
^echo 'Starting 1...'
^sleep 1
^echo 'Finished 1.'
}
{
2024-01-30 05:11:45 +00:00
^echo 'Starting 2...'
^sleep 2
^echo 'Finished 2.'
}
{
2024-01-30 05:11:45 +00:00
^echo 'Starting 3...'
^sleep 3
^echo 'Finished 3.'
}
}