Files
swift-mirror/test/ParseableInterface/Inputs/function_builders_client.swift
Doug Gregor 50fe8e29ea [AST Printing] Print custom attributes on parameters.
Fixes rdar://problem/50232955.
2019-06-11 17:34:45 -07:00

18 lines
219 B
Swift

import FunctionBuilders
let name = "dsl"
tuplify(true) {
17
3.14159
"Hello, \(name.map { $0.uppercased() }.joined())"
do {
["nested", "do"]
1 + 2 + 3
}
if $0 {
2.71828
["if", "stmt"]
}
}