@async will not run them on separate threads but, as the macro name implies, just run them asynchronously.
Currently, the threading support in Julia is not suitable for spawning heterogeneous tasks working independently. The @threads macro can however be used to run a loop threaded. Support for spawning tasks on different threads is work in progress.
I already do this but it show me nothing.
I expected to show me something like this:
Thread1: 1
Thread2: 1
Thread1: 2
Thread2: 2
Thread1: 3
Thread2: 3
…
but nothing