Como puedo hacer funciones asincronas?
Cecil Ward
cecil at cecilward.com
Sun Jun 18 03:20:16 UTC 2023
On Saturday, 17 June 2023 at 22:05:37 UTC, Danico wrote:
> hola gente, quisiera saber como es que puedo hacer funciones
> asincronas.
> `
> #!/usr/bin/env dmd
> import std;
> import std.stdio;
> import std.concurrency;
> //import archivo2;
>
> alias print = writeln;
>
> void main () {
>
> auto tarea1 = spawn(&saludo);
> auto tarea2 = spawn(&saludo2);
>
> print("realizando tareas ");
>
>
> }
>
> void saludo () {
> print("hola");
> }
>
> async saludo2 () {
> print("hola2");
> }
>
> `
This is something I have wanted to achieve also.
More information about the Digitalmars-d-learn
mailing list