Skip to content

Instantly share code, notes, and snippets.

@mrserverless
Created March 4, 2018 09:54
Show Gist options
  • Save mrserverless/188cb008913823d9ea745ddeef72208f to your computer and use it in GitHub Desktop.
Save mrserverless/188cb008913823d9ea745ddeef72208f to your computer and use it in GitHub Desktop.
Performance benchmarks
namespace AwsDotnetFsharp
open Amazon.Lambda.Core
[<assembly:LambdaSerializer(typeof<Amazon.Lambda.Serialization.Json.JsonSerializer>)>]
do ()
module Handler =
type Response = { statusCode : int; body : string }
let hello(): Response = {
statusCode = 200
body = "hello"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment