shortcuts-swift
shortcuts-swift copied to clipboard
Write Shortcuts in Playgrounds
~~Branches from #19~~ To get familiar with the library I tried to replicate the "Tweet Current Song" shortcut: To acomplish this I had to: - Added an Xcode playground to...
Currently, variable use in `String` interpolation is a big hack that encodes the `Variable`'s `Attachment` _value_ as JSON and is pulled apart into a `Dictionary` of `string` and `attachmentsByRange` by...
This would alleviate the need for the `+` operator. Before: ```swift let shortcut = buildShortcut( foo() + bar() + baz() ) ``` After: ```swift let shortcut = buildShortcut([ foo(), bar(),...