diff options
author | Seth Corker <seth.corker@gmail.com> | 2019-08-13 22:55:18 +0100 |
---|---|---|
committer | Seth Corker <seth.corker@gmail.com> | 2019-08-13 22:55:18 +0100 |
commit | 91f1f4f936f13e7363d832771acb6f5b2cd14879 (patch) | |
tree | cdeb539419151a7b046dc16ce664b08c5b955d70 /reason.html.markdown | |
parent | 0b5245e2d83453f23e13195ea164a35603c4855a (diff) |
Apply some spelling and ordering suggested by @amartincolby
Diffstat (limited to 'reason.html.markdown')
-rw-r--r-- | reason.html.markdown | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/reason.html.markdown b/reason.html.markdown index 45633cf5..62d809cf 100644 --- a/reason.html.markdown +++ b/reason.html.markdown @@ -2,13 +2,13 @@ language: reason filename: reason.re contributors: - - ["Seth Corker", "https://sethcorker.com"] + - ["Seth Corker", "https://sethcorker.com"] --- Reason is a syntax over OCaml that is easier to get started for programmers who are familiar with C-style syntax like JavaScript. BuckleScript is part of the toolchain which compiles Reason to JavaScript so you can write statically typed code for anywhere that JavaScript runs. ```javascript -/* Comments start with slash-star, and end with slash-star */ +/* Comments start with slash-star, and end with star-slash */ /*---------------------------------------------- * Variable and function declaration @@ -18,7 +18,7 @@ Reason is a syntax over OCaml that is easier to get started for programmers who */ let x = 5; -/* - Notice we didn't add a type, Reason will infer it's an int */ +/* - Notice we didn't add a type, Reason will infer x is an int */ /* A function like this, take two arguments and add them together */ let add = (a, b) => a + b; @@ -27,7 +27,7 @@ let add = (a, b) => a + b; /*---------------------------------------------- * Type annotation *---------------------------------------------- - * Types don't need tp be explicitly annotated in most cases but when you need + * Types don't need to be explicitly annotated in most cases but when you need * to, you can add the type after the name */ @@ -85,7 +85,7 @@ let lastLetter = 'z'; /* > Boolean */ -/* A boolean be either true or false */ +/* A boolean can be either true or false */ let isLearning = true; true && false; /* - : bool = false; Logical and */ @@ -445,11 +445,11 @@ switch (driveToTown(evan)) { }; /* Alternatively, a try block can be used */ +/* - With Reason exceptions can be avoided with optionals and are seldom used */ let messageToEvan = try (driveToTown(evan)) { | Under_Age => evan.firstName ++ " is too young to drive!" }; -/* - With Reason exceptions can be avoided with optionals and are seldom used */ /*---------------------------------------------- * Object @@ -488,7 +488,7 @@ house#temperature; /* - : float = 22. */ /*---------------------------------------------- * Module *---------------------------------------------- - * Modules are used to organize your code and provide namespacing, + * Modules are used to organize your code and provide namespacing. * Each file is a module by default */ @@ -537,6 +537,7 @@ module SpecializedStaff = { ``` ## Further Reading + - [Official Reason Docs](https://reasonml.github.io/docs/en/what-and-why) - [Official BuckleScript Docs](https://bucklescript.github.io/docs/en/what-why) - [Try Reason](https://reasonml.github.io/en/try) |