Hubbry Logo
search button
Sign in
Frink (programming language)
Frink (programming language)
Comunity Hub
History
arrow-down
starMore
arrow-down
bob

Bob

Have a question related to this hub?

bob

Alice

Got something to say related to this hub?
Share it here.

#general is a chat channel to discuss anything related to the hub.
Hubbry Logo
search button
Sign in
Frink (programming language)
Community hub for the Wikipedia article
logoWikipedian hub
Welcome to the community hub built on top of the Frink (programming language) Wikipedia article. Here, you can discuss, collect, and organize anything related to Frink (programming language). The purpose ...
Add your contribution
Frink (programming language)
Frink
ParadigmMulti-paradigm: object-oriented, imperative, functional,
Designed byEliasen, Alan
First appeared2001
Filename extensions.frink
Websitefrinklang.org
Major implementations
Java virtual machine
Influenced by
Java

Frink is a computer programming language. It is, according to creator of the language, "designed to make physical calculations simple, to help ensure that answers come out right, and to make a tool that's really useful in the real world. It tracks units of measure (feet, meters, kilograms, watts, etc.) through all calculations, allowing you to mix units of measure transparently, and helps you easily verify that your answers make sense."[1]

Features

[edit]

Name

[edit]

Frink was named after Professor Frink, recurring character in the animated television series The Simpsons.[1]

Example

[edit]
fibonacciN[n] :=
{
   a = 0
   b = 1
   count = 0
   while count < n
   {
      [a,b] = [b, a + b]
      count = count + 1
   }
   return a
}

References

[edit]
  1. ^ a b Eliasen, Alan. "Frink (official website)". Retrieved 2011-07-30.
[edit]