what would be the best api design when function pa...
# announcements
u
what would be the best api design when function parameter is parameter into string templating?
Copy code
fun foo(bar: String) {
	val baseUrl = "https://${bar}com/whatever"
	doFoo(baseUrl)
}