Skip to content

Commit 3382db4

Browse files
committed
Some tweaks to the getting started article
Will resolve #85. I removed most of the references to `psc` as well as fixing the docs link, as we don't really talk about `psc` in the article anymore since Pulp is handling all the arguments and options when building.
1 parent d262555 commit 3382db4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

learn/getting-started/index.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ published: 2015-12-13
66

77
Welcome to the PureScript community blog! In this first post, I'm going to walk through the basics of getting set up to use the PureScript compiler `psc`, and its interactive mode `psci`.
88

9-
I'll start with the installation of the compiler, go through the basic commands of `psc` and `psci`, working towards a solution of problem 1 from [Project Euler](http://projecteuler.net/problem=1).
9+
I'll start with the installation of the compiler and Pulp build tool, and then go through the basic usage of `psci`, working towards a solution of problem 1 from [Project Euler](http://projecteuler.net/problem=1).
1010

1111

1212
#### Installing the Compiler
1313

1414
You'll need [Node.js and npm](https://docs.npmjs.com/getting-started/installing-node) and to be [able to install global packages](https://docs.npmjs.com/getting-started/fixing-npm-permissions#option-1-change-the-permission-to-npm-s-default-directory) to proceed.
1515

16-
The Purescript compiler (psc) can be installed with npm:
16+
The Purescript compiler (`psc`) can be installed with npm:
1717

1818
npm install -g purescript
1919

@@ -155,7 +155,7 @@ When you have finished using PSCi, type `:quit` to quit:
155155

156156
#### Compiling a Solution
157157

158-
Now that we've seen how to use `psci` to reach the answer, let's move our solution into a source file, and compile it using `psc`.
158+
Now that we've seen how to use `psci` to reach the answer, let's move our solution into a source file and compile it.
159159

160160
Create a new text file `src/Euler.purs` and copy the following code:
161161

@@ -235,6 +235,6 @@ The `pulp run` command can be used to compile and run the `Main` module:
235235

236236
#### Conclusion
237237

238-
That's all for this post. We've seen how to use enough of the basics of `psc` and PSCi to compile, execute and test simple PureScript programs. If you would like more information, the [PureScript documentation](http://docs.purescript.org) lists all of the options for both `psc` and `psci`.
238+
That's all for this post. We've seen how to use enough of the basics of Pulp and `psci` to compile, execute and test simple PureScript programs.
239239

240240
Until next time...

0 commit comments

Comments
 (0)