Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Frink (programming language)
Programming language

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."

We don't have any images related to Frink (programming language) yet.
We don't have any YouTube videos related to Frink (programming language) yet.
We don't have any PDF documents related to Frink (programming language) yet.
We don't have any Books related to Frink (programming language) yet.
We don't have any archived web articles related to Frink (programming language) yet.

Features

Name

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

Example

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

References

  1. Eliasen, Alan. "Frink (official website)". Retrieved 2011-07-30. http://futureboy.us/frinkdocs/

  2. Eliasen, Alan. "Frink (official website)". Retrieved 2011-07-30. http://futureboy.us/frinkdocs/