Justin Mancinelli

Results 3 issues of Justin Mancinelli

The solution includes the line ``` res.writeHead(200, {'content-type': 'text/plain'}) ``` Neither the instructions nor the hints indicate the student should write this. Verification also doesn't test for this so it...

Although it is just a hint to return 200 with appropriate header: ``` You should also be a good web citizen and set the Content-Type properly: res.writeHead(200, { 'Content-Type': 'application/json'...

A few things I needed to deal with # Dispatcher I saw that the [Main dispatcher is equivalent to the Default dispatcher in JS](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-dispatchers/index.html) so I just used default. #...