`await` gets you the content of a `Future`. `discard` just discards whatever you pass as argument.
`proc` with `{.async.}` always return `Future`. (usually compiler wont let you just discard/not use stuff).
`await` gets you the content of a `Future`. `discard` just discards whatever you pass as argument.
`proc` with `{.async.}` always return `Future`. (usually compiler wont let you just discard/not use stuff).