12 lines
104 B
Go
12 lines
104 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
|
||
|
)
|
||
|
|
||
|
func exec_task(arg string) string{
|
||
|
|
||
|
response := "" + arg
|
||
|
|
||
|
return response
|
||
|
}
|