1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-22 22:33:29 +02:00

List formatting

Lists needed a space before numbers to actually become html list formatted.
This commit is contained in:
Ian Bertolacci
2015-07-12 16:45:18 -07:00
parent 2ba9af4b85
commit cbbb833445

View File

@@ -29,18 +29,18 @@ Installing the Compiler
Chapel can be built and installed on your average 'nix machine (and cygwin). Chapel can be built and installed on your average 'nix machine (and cygwin).
Download the latest release version from https://github.com/chapel-lang/chapel/releases/ Download the latest release version from https://github.com/chapel-lang/chapel/releases/
and its as easy as and its as easy as
1. ```tar -xvf chapel-1.11.0.tar.gz``` 1. ```tar -xvf chapel-1.11.0.tar.gz```
2. ```cd chapel-1.11.0``` 2. ```cd chapel-1.11.0```
3. ```make``` 3. ```make```
4. ```source util/setchplenv.bash # or .sh or .csh or .fish``` 4. ```source util/setchplenv.bash # or .sh or .csh or .fish```
You will need to ```source util/setchplenv.*``` from the chapel directory every You will need to ```source util/setchplenv.*``` from the chapel directory every
time your terminal starts so its suggested that you drop that command in a script time your terminal starts so its suggested that you drop that command in a script
that will get executed on startup (like .bashrc). that will get executed on startup (like .bashrc).
Chapel is easily installed with Brew for OS X Chapel is easily installed with Brew for OS X
1. ```brew update``` 1. ```brew update```
2. ```brew install chapel``` 2. ```brew install chapel```
Who is this tutorial for? Who is this tutorial for?
------------------------- -------------------------