Category:Frege: Difference between revisions

From Rosetta Code
Content added Content deleted
(flesh out the Frege stub a tiny bit more)
(set homepage to frege-lang.org instead of its Github page, and fix some template stuff)
 
(2 intermediate revisions by the same user not shown)
Line 5: Line 5:
|checking=static
|checking=static
|gc=yes
|gc=yes
|LCT=yes
|LCT=no
|hopl=no
|site=https://github.com/Frege/frege}}
|site=http://www.frege-lang.org/}}
{{language programming paradigm|Declarative}}
{{language programming paradigm|Declarative}}
{{language programming paradigm|functional}}
{{language programming paradigm|functional}}

'''Frege''' is a purely [[functional programming]] language with non-strict semantics, strongly influenced by [[Haskell]], but targeting the [[JVM]], and deviates from Haskell in ways which make it easier to interoperate with [[Java]].
{{infobox_begin}}[http://try.frege-lang.org/ Try] this language on [http://try.frege-lang.org/ frege-lang.org].{{infobox_end}}

'''Frege''' is a purely [[functional programming]] language with [[lazy evaluation|non-strict]] semantics, strongly influenced by [[Haskell]], but targeting the [[runs on vm::Java Virtual Machine|JVM]], and deviates from Haskell in ways which make it easier to interoperate with [[Java]].

Frege source files use the extension <code>.fr</code>. Frege is similar enough to Haskell that <code>haskell-mode</code> can be used for editing Frege source files, for example by putting this line in your <code>.emacs</code>:

<pre>
(add-to-list 'auto-mode-alist '("\\.fr$" . haskell-mode))
</pre>


==Citations==
==Citations==

Latest revision as of 10:00, 12 January 2013

Language
Frege
This programming language may be used to instruct a computer to perform a task.
Official website
Garbage collected: Yes
Type safety: Safe
Type strength: Strong
Type compatibility: Structural
Type checking: Static
See Also:


Listed below are all of the tasks on Rosetta Code which have been solved using Frege.


Try this language on frege-lang.org.

Frege is a purely functional programming language with non-strict semantics, strongly influenced by Haskell, but targeting the JVM, and deviates from Haskell in ways which make it easier to interoperate with Java.

Frege source files use the extension .fr. Frege is similar enough to Haskell that haskell-mode can be used for editing Frege source files, for example by putting this line in your .emacs:

(add-to-list 'auto-mode-alist '("\\.fr$" . haskell-mode))

Citations