In scala, if you want pass argument using sbt command
syntax :
sbt "runMain MainClass argument"
eg: my main class name is BookApp and I want to pass book name Physics.then,
sbt "runMain BookApp Physics"
if your main class is inside the package eg: org
sbt "runMain org.BookApp Physics"