sarah w
sarah w

Reputation: 3515

how to create project files in sbt

hi i am new in sbt i am following this tutorial http://www.scala-sbt.org/0.13/tutorial/Hello.html i followed the same steps on the shell the program displays "hi" i am confused i don't have these files in my hello folder

and also i dont't have the build.sbt file i am following this tutorial as it is i have only hw.scala file and a target folder
mt scala version is 2.11.1 and sbt version is sbt 0.13.5
am i doing something wrong ?

Upvotes: 0

Views: 551

Answers (1)

om-nom-nom
om-nom-nom

Reputation: 62855

Just create build.sbt and write appropriate lines into it. Same goes for mentioned directories -- stock sbt does not create files and folders for you, but it has to recognize them, once they're there.

Upvotes: 1

Related Questions