Skip to content

Commit

Permalink
Added 'hello world' Eclipse Scala project
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Kleppmann committed Feb 26, 2009
1 parent 7e3d1ef commit 9f86b16
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .classpath
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="ch.epfl.lamp.sdt.launching.SCALA_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
.manager
.settings
bin
18 changes: 18 additions & 0 deletions .project
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>OAccounts</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>ch.epfl.lamp.sdt.core.scalabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>ch.epfl.lamp.sdt.core.scalanature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
7 changes: 7 additions & 0 deletions src/org/oaccounts/Main.scala
@@ -0,0 +1,7 @@
package org.oaccounts

object Main {
def main(args: Array[String]) {
println("Hello, world!")
}
}

0 comments on commit 9f86b16

Please sign in to comment.