SwiftOnLambda icon indicating copy to clipboard operation
SwiftOnLambda copied to clipboard

Use Swift to define an Amazon Lambda function, and an Alexa Custom Skill

Results 2 SwiftOnLambda issues
Sort by recently updated
recently updated
newest added

As an exercise, I rewrote the example to use `AlexaSkillsKit` to simplify parsing and generating Alexa messages. The functionality is still the same, but I think the sample is easier...

``` /src/.build/debug/swiftcommand.build/main.swift.o: In function `main': /src/Sources/main.swift:(.text+0x0): multiple definition of `main' /tmp/LinuxMain-85a3d7.o:/src/Tests/LinuxMain.swift:(.text+0x0): first defined here ``` Presumably this is because `main.swift` is automatically turned into the main function and yet `XCTMain`...