You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: learn/getting-started/index.markdown
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,14 +6,14 @@ published: 2015-12-13
6
6
7
7
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`.
8
8
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).
10
10
11
11
12
12
#### Installing the Compiler
13
13
14
14
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.
15
15
16
-
The Purescript compiler (psc) can be installed with npm:
16
+
The Purescript compiler (`psc`) can be installed with npm:
17
17
18
18
npm install -g purescript
19
19
@@ -155,7 +155,7 @@ When you have finished using PSCi, type `:quit` to quit:
155
155
156
156
#### Compiling a Solution
157
157
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.
159
159
160
160
Create a new text file `src/Euler.purs` and copy the following code:
161
161
@@ -235,6 +235,6 @@ The `pulp run` command can be used to compile and run the `Main` module:
235
235
236
236
#### Conclusion
237
237
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.
0 commit comments