Ramp users 10 every 5 seconds for the duration of test at a maximum of 100

I am not that familiar with SCALA. I have tried the Ramp example in the documentation, however I get an error when running Gatling.bat. I am trying to Ramp up 10 users every 5 seconds for the duration of my test and hit a maximum of 100 users? Any suggestions? Thank you!

I figured it out

setUp(
scn.inject(
splitUsers(100) into(
atOnceUsers(10)
) separatedBy(5 seconds)
).protocols(httpProtocol)
)}