<@U0B8ZP13Q>: sorry for the question, but can you ...
# kobalt
v
@cedric: sorry for the question, but can you explain advantages of having builder syntax vs simple function calls? e.i.
Copy code
val p = javaProject(wrapper) {
    name = "kobalt"
    group = "com.beust"
    artifactId = name
    version = "0.1"
}
vs
Copy code
val p = javaProject(wrapper,
    name = "kobalt",
    group = "com.beust",
    artifactId = name,
    version = "0.1"
)