Avatar
norio_nomura 1/9/2020 5:26 AM
@swift-5.2.5 struct SimpleCallable { func callAsFunction(_ x: Float) -> Float { return x } } let foo = SimpleCallable() print(foo(1)) print(foo(foo(1)))