Skip to content

Latest commit

 

History

History
68 lines (54 loc) · 840 Bytes

File metadata and controls

68 lines (54 loc) · 840 Bytes

Markdown Runner Demo

Test empty fail.

echo "Hello from your Shell"
echo "Still saying hi"
console.log("Hello from Javascript (Node)")
curl -s http://example.com
console.log("Hello from Javascript (Node)")
resp, err := http.Get("http://example.com/")
if err != nil {
	// handle error
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
fmt.Println(string(body))
print("Hello from Python")
puts "Hello from Ruby"
print("Hello from Swift")
echo "Hello from Vim"
POST localhost:5000/people
X-User: Admin

{
  "name": "New Person"
}
GET localhost:5000/people
X-User: Admin
q=New
GET localhost:5000/test-auth
-u user:pass