# Dapr Parallel Workflow Example with go-sdk ## Step ### Prepare - Dapr installed ### Run Workflow ```bash dapr run --app-id workflow-parallel \ --dapr-grpc-port 50001 \ --log-level debug \ --resources-path ./config \ -- go run ./main.go ``` ## Result ``` - '== APP == Workflow(s) and activities registered.' - 'work item listener started' - '== APP == Processing work item: 9' - '== APP == Work item 9 processed. Result: 18' - '== APP == Final result: 90' - '== APP == workflow status: COMPLETED' - '== APP == workflow terminated' - '== APP == workflow purged' ```