Skip to content

Commit

Permalink
Hello world! --> Hello, World!
Browse files Browse the repository at this point in the history
  • Loading branch information
myreen committed Jan 24, 2020
1 parent db9813e commit 2bc5f8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions how-to.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ which contains among other things:
Now let's run the compiler. Suppose you have a file called `hello.cml`
which contains:

print "Hello world!\n";
print "Hello, World!\n";

The simplest way to compile and run this CakeML program, on GNU/Linux and
macOS, is to type `make hello.cake` and then `./hello.cake` on the
Expand All @@ -40,7 +40,7 @@ command line as follows. On Windows, one types `make hello.cake.exe`.
$ make hello.cake
$ ./hello.cake

The last line will print `Hello world!` on standard output.
The last line will print `Hello, World!` on standard output.

By looking at what the `make` does, you'll see that on the first run
it builds the CakeML compiler `cake`, then it runs the CakeML compiler
Expand Down

0 comments on commit 2bc5f8a

Please sign in to comment.