Skip to content

Commit

Permalink
Updated links
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsoromanz committed May 30, 2019
1 parent f1f7aa1 commit 6153193
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Give it a try at
[http://lisptojavascript.com](http://lisptojavascript.com)

## Test programs
See the full list of test programs [here](https://github.com/onfleet/alfonso-backend-homework/tree/master/test_programs).
See the full list of test programs [here](https://github.com/alfonsoromanz/lispToJavascript/tree/master/test_programs).

I'll be adding new ones soon.

Expand Down Expand Up @@ -67,7 +67,7 @@ while (count > 0) {

# Grammar specification

See the grammar in BNF notation [by clicking here](https://github.com/onfleet/alfonso-backend-homework/blob/master/src/transpiler/grammar.jison)
See the grammar in BNF notation [by clicking here](https://github.com/alfonsoromanz/lispToJavascript/blob/master/src/transpiler/grammar.jison)

# Supported features

Expand Down Expand Up @@ -221,7 +221,7 @@ OR

### Semantics
+ When the list is **not** preceded by a single quote **and** the first expression is an `IDENTIFIER`:
+ If the `IDENTIFIER` matches a declared function, the list is evaluated as a function call. The rest of the expressions will be passed as parameters of the function (see [function calls](https://github.com/onfleet/alfonso-backend-homework#function-calls)).
+ If the `IDENTIFIER` matches a declared function, the list is evaluated as a function call. The rest of the expressions will be passed as parameters of the function (see [function calls](https://github.com/alfonsoromanz/lispToJavascript#function-calls)).
+ Otherwhise, the list is converted to an array

+ When the list is preceded by a single quote, the list is converted to an array
Expand Down Expand Up @@ -593,8 +593,8 @@ Getting up and running is as easy as 1, 2, 3.
2. Clone the repo and install your dependencies
```
git clone https://github.com/onfleet/alfonso-backend-homework.git;
cd path/to/alfonso-backend-homework;
git clone https://github.com/alfonsoromanz/lispToJavascript.git;
cd path/to/lispToJavascript;
npm install
```
Expand Down
4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,15 @@
<h1 class="center-text">Basic LISP to Javascript Transpiler.</h1>
<h2 class="center-text">By Alfonso Roman Zubeldia</h2>
<p class="center-text">(<a href="https://www.linkedin.com/in/alfonsoromanz/" title="Linkedin profile" target="blank">Linkedin</a>, <a href="https://angel.co/alfonso-roman-y-zubeldia" title="Angel.co profile" target="blank">Angel.co</a>)</p>
<p class="center-text check-github"> Check github for <a href="https://github.com/onfleet/alfonso-backend-homework/tree/master/test_programs" title="Program examples" target="blank">examples</a> and <a href="https://github.com/onfleet/alfonso-backend-homework#basic-lisp-to-javascript-transpiler" title="Transpiler docs" target="blank">documentation</a></p>
<p class="center-text check-github"> Check github for <a href="https://github.com/alfonsoromanz/lispToJavascript/tree/master/test_programs" title="Program examples" target="blank">examples</a> and <a href="https://github.com/alfonsoromanz/lispToJavascript#basic-lisp-to-javascript-transpiler" title="Transpiler docs" target="blank">documentation</a></p>
<div class="containerCode">
<textarea id="code" placeholder="Enter lisp code..."onInput="convertCode()"></textarea>
<textarea readonly id="transpiledCode"></textarea>
</div>


<footer>
<p class="center-text">See it on <a href="https://github.com/onfleet/alfonso-backend-homework" title="Lisp to Javascript Compiler" target="blank">GitHub</a>.</p>
<p class="center-text">See it on <a href="https://github.com/alfonsoromanz/lispToJavascript" title="Lisp to Javascript Compiler" target="blank">GitHub</a>.</p>
</footer>
</main>
</body>
Expand Down

0 comments on commit 6153193

Please sign in to comment.