Skip to content

Commit

Permalink
Merge pull request #20 from gilch/preview-release
Browse files Browse the repository at this point in the history
Final cleanup for PyPI package release.
  • Loading branch information
gilch authored Jun 29, 2019
2 parents eab6ce8 + b5b105a commit 991779c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -630,9 +630,15 @@ But for a top-level `define` like this, you could have just used `exec()`.

> How do I start the REPL again?
Launch the Hissp package using Python from the command line
If you installed the distribution using pip,
you can use the provided `hissp` console script.
```
$ python -m hissp
$ hissp
```
You can also launch the Hissp package directly
using an appropriate Python interpreter from the command line
```
$ python3 -m hissp
```

> There are no statements?! How can you get anything done?
Expand Down
2 changes: 1 addition & 1 deletion src/hissp/repl.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
def repl(macros=None):
parser = Parser()
if not macros:
with suppress():
with suppress(FileNotFoundError):
transpile("hissp", "basic")
from hissp import basic

Expand Down

0 comments on commit 991779c

Please sign in to comment.