Category:Factor: Difference between revisions

m
Add link to unimplemented tasks
m (Changed over to language header)
m (Add link to unimplemented tasks)
 
(24 intermediate revisions by 8 users not shown)
Line 1:
{{language|Factor}}
|exec=machine
Factor is a stack language similar to, but of a higher level than, [[Forth]].
|site=https://factorcode.org
|gc=yes
|parampass=reference
|safety=safe
|strenght=weak
|compat=duck
|express=implicit
|checking=dynamic
|tags=factor
|LCT=yes}}
Factor is a stack-based, concatenative, general-purpose programming language with a focus on practicality.
 
Initially developed by Slava Pestov, Factor began life in 2003 as a scripting language written for a game. The implementation was originally an interpreter written in [[Java]], but has since gained an optimizing compiler and has been rewritten in Factor with a minimal [[C++]] core. Read more about Factor's implementation history [https://concatenative.org/wiki/view/Factor/Implementation%20history here]. Factor is still being developed by dozens of contributors, with the latest [https://re.factorcode.org/2023/08/factor-0-99-now-available.html stable release] in August 2023.
 
Factor is a stack language similar to, but of a higher level than, [[Forth]]. Factor is a [https://concatenative.org/wiki/view/Concatenative%20language concatenative language], meaning that rather than applying functions to arguments (applicative languages) to evaluate things, we compose functions to evaluate a single piece of data — the entire program up until that particular point. In Factor, the basic structure of data flow is function composition. That is, <code>foo bar baz</code> is equivalent to <code>baz(bar(foo()))</code> in an applicative language. This offers a nice left-to-right style of reading and data flow.
 
In Factor, we tend to name data flow operations rather than values. In an applicative language, you might write
<syntaxhighlight>var x = ...;
var y = foo(x);
var z = bar(x);</syntaxhighlight>
In Factor this is a data flow pattern called <code>bi</code>.
<syntaxhighlight lang=factor>[ foo ] [ bar ] bi</syntaxhighlight>
This says, "apply <code>foo</code> to the object at the top of the data stack, and apply <code>bar</code> to it as well." Rather than naming the values <tt>x</tt>, <tt>y</tt>, and <tt>z</tt>, we named the data flow pattern.
 
Factor comes with many practical features, including a [[Interactive programming (repl)#Factor|REPL]], a self-contained help browser, an object inspector, a debugger/code walker, a deployment tool, editor integration for most popular text editors and [[IDE]]s, and introspection capabilities useful for developers. Factor has a fully-featured library, including things such as an HTTP server/client, bindings to graphics libraries and databases, a [[C]] [[FFI]], a cross-platform [[GUI]] framework, on down to niche things like polynomial arithmetic. Factor features an object system that takes inspiration from [[Common Lisp]] and [[Self]].
 
Most code tends to be expressed naturally in a functional manner. Factor comes with combinators (higher-order functions) typically seen in functional languages, such as <code>map</code>, <code>filter</code>, <code>reduce</code>, and many more. Although most things can be done efficiently without mutation, Factor doesn't shy away from it when it's useful. Mutating words end with exclamation points (by convention). Factor provides lexical and dynamic variables which can make writing imperative code more natural, or allows one to clean up code that performs a lot of stack shuffling.
 
One of Factor's greatest strengths is its ability to factor words into smaller words. Due to the nature of [[concatenative programming]], this is typically a cut and paste job that can be done almost anywhere there is whitespace. Factor also has impressive metaprogramming capabilities. Since Factor is almost entirely written in Factor, there is full introspection support, including seamless access to Factor's parser, allowing one to define new syntax. Factor also offers [[Lisp]]-style macros, and in general, Factor code can be treated like a collection ([https://en.wikipedia.org/wiki/Homoiconicity homoiconicity]).
 
==About Factor examples on Rosetta Code==
Most of the newer examples are meant to be copied and pasted directly into the listener (Factor's REPL) where they should run without issue. In order to deploy the examples to binaries or run them as scripts, you'll need to put them in a vocabulary (e.g. <code>IN: myvocab</code> and set a <code>MAIN:</code> word which acts as the entry point for the program. If an example doesn't run, it probably means that the example only works in an older version of Factor. Most of the time, this is because certain words have been changed without maintaining backwards compatibility (e.g. <code>iota</code> became <code><iota></code> in Factor 0.98).
 
For this reason, it is advised that examples use the <code>works with</code> template to indicate which version of Factor the example works with. For example,
<pre>{{works with|Factor|0.98}}</pre> becomes
{{works with|Factor|0.98}}
 
==Todo==
[https://rosettacode.org/wiki/Tasks_not_implemented_in_Factor Tasks not implemented in Factor]
 
==Links==
*[httphttps://factorcode.org Factor homepageprogramming language]
*[https://planet.factorcode.org Planet Factor]
*[http://www.bluishcoder.co.nz/responder/fjsc/ FJSC] -- Factor to JavaScript compiler
*[https://concatenative.org/wiki/view/Factor Factor on concatenative.org]
*[https://en.wikipedia.org/wiki/Factor_(programming_language) Factor on Wikipedia]
 
{{Language programming paradigm|Concatenative}}
1,808

edits