Quick actions

cmd+k|ctrl+k

Navigation

Languages

HTTP response

Snippet info

Language

Idris

Visibility

public

Author

rightfold

Created

2017-07-26T08:57:38Z

Updated

2017-07-26T09:03:19Z

module Main

ByteString : Type
ByteString = String

record Response where
  constructor MkResponse
  status : Int
  body   : if status == 201 then () else ByteString

main : IO ()
main = putStrLn "Hello World!"
INFO