Fantom (programming language)
Paradigm | multi-paradigm |
---|---|
Developer | Brian Frank, Andy Frank |
First appeared | 2005[1] |
Stable release |
1.0.68
/ April 7, 2016[2] |
Typing discipline | static, dynamic |
License | Academic Free License version 3.0[3] |
Website |
www |
Influenced by | |
C#, Java, Scala, Ruby, Erlang |
Fantom is a general purpose object-oriented programming language created by Brian and Andy Frank[4] that runs on the Java Runtime Environment (JRE), JavaScript, and the .NET Common Language Runtime (CLR) (.NET support is considered "prototype"[5] status). Its primary design goal is to provide a standard library API[6] that abstracts away the question of whether the code will ultimately run on the JRE or CLR. Like C# and Java, Fantom uses a curly brace syntax. The language supports functional programming through closures and concurrency through the Actor model. Fantom takes a "middle of the road" approach to its type system, blending together aspects of both static and dynamic typing.
Typing
Fantom's type system is simple by design. All variables are statically typed, as they are in C# and Java. Fantom rejects generic types due to their complexity, but it does have a set of built-in generic types: List, Map, and Func. Fantom can also take on the feel of a dynamically typed language through dynamic calls and automatic downcasting. Fantom has an easy to use reflection API and metaprogramming capabilities.
Fantom is open source under the Academic Free License 3.0 and is available for Windows and Unix-like platforms (including Mac OS X).[7]
Pods
In Fantom, the unit of deployment is called a pod. Pods take on the role of namespaces, packages, and modules. They are stored as .pod files, which are zip files containing the FCode (the Fantom bytecode), the documentation, and resource files necessary to run the pod. A pod can define any number of types for use in other libraries and applications. A pod name fully qualifies a type name. For example, fwt::Widget is distinct from webapp::Widget. If a pod contains a type named Main, then it can be executed on the command line with: fan <podName>
The Fantom build system can package a set of Pods into a JAR archive through build::JarDist.
Fantom Widget Toolkit
Fantom ships with a standard windowing toolkit called the Fantom Widget Toolkit, or FWT for short.[8] Like Fantom, FWT was designed to be portable across several platforms. It is currently implemented on the JVM using the Standard Widget Toolkit as a backend. The JavaScript implementation is backed by the canvas element and JavaFX, allowing FWT applications to be run in a web browser. There are plans for a CLR implementation using Windows Forms.
"Hello World" example
Here is the classic Hello world program written in Fantom:
// Hello from Fantom!
class HelloWorld
{
static Void main()
{
echo("Hello, World!")
}
}
Notice that "Void" is capitalized. This is because Void is a class, not a primitive type in Fantom.
Name change
The original name of the Fantom programming language was Fan, named after the neighborhood where the creators live in Richmond, Virginia. After gaining some popularity members of the community raised concerns about the searchability of the name. In November 2009,[9] the name of the project was officially changed from Fan to Fantom.[10]
Other features
Fantom has other useful features:
- Fantom supports imports of Java Classes and modules with some limitations.[11]
- Integer is 64-bit. Unlike Java and C#, Fantom does not have Long or Short integer types.
- Serialization and deserialization of classes to/from strings.[12]
- Fantom does not support tuples (that is, types which are the Cartesian product of other types)[13]
See also
References
- ↑ Blog post about history of Fantom
- ↑ "Fantom". 7 April 2016.
- ↑ FAQ of Fandoc language website
- ↑ Fantom FAQ: Contact Us
- ↑ Fantom FAQ: Roadmap
- ↑ Fantom FAQ: Why Fantom?
- ↑ McAllister, Neil (2012-01-03). "10 programming languages that could shake up IT". InfoWorld. Retrieved 2015-10-30.
- ↑ "fwt – Fantom". Fantom.org. 2015-01-08. Retrieved 2015-10-30.
- ↑ History of Fantom programming language
- ↑ Fan is officially now Fantom
- ↑ Java FFI at Fantom home page
- ↑ Serialization at Fantom.org
- ↑ Tuples question at Fantom official page
Further reading
- Binstock, Andrew (2010-07-14). "Top five scripting languages on the JVM: Groovy and JRuby lead a strong field, with Scala, Fantom, and Jython following behind". Dr. Dobb's. Retrieved 2015-10-30.
- Frank, Brian (2011-02-18). "Fantom". Dr. Dobb's. Retrieved 2015-10-30.
External links
- Official website
- Why Fantom, by Fantom's authors, explains why they have created this language.
- Not a Fan of Scala? An Evolutionary Approach | Ajaxonomy - blog post discussing Fan
- Fan of a New Language | SD Times
- Re: Fan Programming Language ([email protected] mailing list) a forum post by one of Fantom's authors.
- The Next Big JVM Language, a conversation with Stephen Colebourne by Bill Venners.
- Language reference page at LangRef.org