Improved parallel building

This commit is contained in:
Lorenzo Venerandi
2025-01-29 18:43:49 +01:00
parent 0490884213
commit 8246538ac5
3 changed files with 52 additions and 10 deletions

12
project/tasks/danano.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import (
)
func exec_task(arg string) string{
response := "Ciao danano " + arg
return response
}