Alex Styl
04/14/2024, 4:53 AM_ before a function parameter name to remove the enforcement of the caller to specify the name on the argument.
any way to do the same when consuming kotlin functions from swift?
I want to create fun print(text:String) and consume it like print("hello") from Swift, not print(text:"hello")Darron Schall
04/14/2024, 3:10 PMfun print(@ObjCName(swiftName = "_") text: String)louiscad
04/14/2024, 5:50 PM_text rather than _ for the swiftName?