Merge pull request #59 from nebiros/master

fantom hello world; http://fantom.org
This commit is contained in:
Mike Donaghy
2014-08-17 22:47:09 -04:00

6
f/fantom.fan Normal file
View File

@@ -0,0 +1,6 @@
// Hello from Fantom!
class HelloWorld {
static Void main() {
echo("Hello, World!")
}
}