]> gitweb.factorcode.org Git - factor.git/blob - README.md
README: Add instructions for M1 macs and talk about the arm64 port.
[factor.git] / README.md
1 # Factor
2
3 [![](https://api.travis-ci.org/factor/factor.svg)](https://travis-ci.org/factor/factor)
4
5 Factor is a [concatenative](https://www.concatenative.org), stack-based
6 programming language with [high-level
7 features](https://concatenative.org/wiki/view/Factor/Features/The%20language)
8 including dynamic types, extensible syntax, macros, and garbage collection.
9 On a practical side, Factor has a [full-featured
10 library](https://docs.factorcode.org/content/article-vocab-index.html),
11 supports many different platforms, and has been extensively documented.
12
13 The implementation is [fully
14 compiled](https://concatenative.org/wiki/view/Factor/Optimizing%20compiler)
15 for performance, while still supporting [interactive
16 development](https://concatenative.org/wiki/view/Factor/Interactive%20development).
17 Factor applications are portable between all common platforms.  Factor can
18 [deploy stand-alone
19 applications](https://concatenative.org/wiki/view/Factor/Deployment) on all
20 platforms.  Full source code for the Factor project is available under a BSD
21 license.
22
23 ## Getting Started
24
25 ### Building Factor from source
26
27 If you have a build environment set up, then you can build Factor from git.
28 These scripts will attempt to compile the Factor binary and bootstrap from
29 a boot image stored on factorcode.org.
30
31 To check out Factor:
32
33 * `git clone git://github.com/factor/factor.git`
34 * `cd factor`
35
36 To build the latest complete Factor system from git, either use the
37 build script:
38
39 * Unix: `./build.sh update`
40 * Windows: `build.cmd`
41 * M1 macOS: `arch -x86_64 ./build.sh update`
42
43 or download the correct boot image for your system from
44 http://downloads.factorcode.org/images/master/, put it in the `factor`
45 directory and run:
46
47 * Unix: `make` and then `./factor -i=boot.unix-x86.64.image`
48 * Windows: `nmake /f Nmakefile x86-64` and then `factor.com -i=boot.windows-x86.64.image`
49
50 Now you should have a complete Factor system ready to run.
51
52 Factor does not yet work on arm64 cpus. There is an arm64 assembler
53 in `cpu.arm.assembler` and we are working on a port and also looking for
54 contributors.
55
56 More information on [building factor](https://concatenative.org/wiki/view/Factor/Building%20Factor)
57 and [system requirements](https://concatenative.org/wiki/view/Factor/Requirements).
58
59 ### To run a Factor binary:
60
61 You can download a Factor binary from the grid on [https://factorcode.org](https://factorcode.org).
62 The nightly builds are usually a better experience than the point releases.
63
64 * Windows: Double-click `factor.exe`, or run `.\factor.com` in a command prompt
65 * Mac OS X: Double-click `Factor.app` or run `open Factor.app` in a Terminal
66 * Unix: Run `./factor` in a shell
67
68 ### Learning Factor
69
70 A tutorial is available that can be accessed from the Factor environment:
71
72 ```factor
73 "first-program" help
74 ```
75
76 Some other simple things you can try in the listener:
77
78 ```factor
79 "Hello, world" print
80
81 { 4 8 15 16 23 42 } [ 2 * ] map .
82
83 1000 [1,b] sum .
84
85 4 <iota> [
86     "Happy Birthday " write
87     2 = "dear NAME" "to You" ? print
88 ] each
89 ```
90
91 For more tips, see [Learning Factor](https://concatenative.org/wiki/view/Factor/Learning).
92
93 ## Documentation
94
95 The Factor environment includes extensive reference documentation and a
96 short "cookbook" to help you get started. The best way to read the
97 documentation is in the UI; press F1 in the UI listener to open the help
98 browser tool. You can also [browse the documentation
99 online](https://docs.factorcode.org).
100
101 ## Command Line Usage
102
103 Factor supports a number of command line switches:
104
105 ```
106 Usage: factor [Factor arguments] [script] [script arguments]
107
108 Common arguments:
109     -help            print this message and exit
110     -i=<image>       load Factor image file <image> (default factor.image)
111     -run=<vocab>     run the MAIN: entry point of <vocab>
112         -run=listener    run terminal listener
113         -run=ui.tools    run Factor development UI
114     -e=<code>        evaluate <code>
115     -no-user-init    suppress loading of .factor-rc
116     -roots=<paths>   a list of path-delimited extra vocab roots
117
118 Enter
119     "command-line" help
120 from within Factor for more information.
121 ```
122
123 You can also write scripts that can be run from the terminal, by putting
124 ``#!/path/to/factor`` at the top of your scripts and making them executable.
125
126 ## Source Organization
127
128 The Factor source tree is organized as follows:
129
130 * `vm/` - Factor VM source code (not present in binary packages)
131 * `core/` - Factor core library
132 * `basis/` - Factor basis library, compiler, tools
133 * `extra/` - more libraries and applications
134 * `misc/` - editor modes, icons, etc
135 * `unmaintained/` - now at [factor-unmaintained](https://github.com/factor/factor-unmaintained)
136
137 ## Source History
138
139 During Factor's lifetime, sourcecode has lived in many repositories. Unfortunately, the first import in Git did not keep history. History has been partially recreated from what could be salvaged. Due to the nature of Git, it's only possible to add history without disturbing upstream work, by using replace objects. These need to be manually fetched, or need to be explicitly added to your git remote configuration.
140
141 Use:
142 `git fetch origin 'refs/replace/*:refs/replace/*'`
143
144 or add the following line to your configuration file
145
146 ```
147 [remote "origin"]
148     url = ...
149     fetch = +refs/heads/*:refs/remotes/origin/*
150     ...
151     fetch = +refs/replace/*:refs/replace/*
152 ```
153
154 Then subsequent fetches will automatically update any replace objects.
155
156 ## Community
157
158 Factor developers meet in the `#concatenative` channel on
159 [irc.freenode.net](http://freenode.net). Drop by if you want to discuss
160 anything related to Factor or language design in general.
161
162 * [Factor homepage](https://factorcode.org)
163 * [Concatenative languages wiki](https://concatenative.org)
164 * [Mailing list](factor-talk@lists.sourceforge.net)
165 * Search for "factorcode" on [Gitter](https://gitter.im/)
166
167 Have fun!