``` @SpringBootApplication class BlogApplication ...
# announcements
x
Copy code
@SpringBootApplication
class BlogApplication

fun main(args: Array<String>) {
  runApplication<BlogApplication>(*args)
}
what does the
*
do?
b
similar to Python, unpacks an array of values and passes them as function parameters
k
It's the syntax for passing an array to a vararg parameter. Behind the scenes it just copies the array.