# install sbt with homebrew (if you didn't)
brew install sbt
# - create a new scala project
# - name your project name when asked like: hello-world
sbt new sbt/scala-seed.g8
# go to the new project directory that you named
cd hello-world
# run sbt to open the sbt shell
sbt
# run you...