Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/trepl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoumith Chintala <soumith@gmail.com>2015-08-29 05:13:16 +0300
committerSoumith Chintala <soumith@gmail.com>2015-08-29 05:13:16 +0300
commit9eb1b97f0304a0b2ed28ef81c0870a9baa8f9c70 (patch)
tree29867ff4f0915f8788ec28b1faac84964d100fc6 /README.md
parent015b0eb1e2275093f6413abe521892fcaeac605f (diff)
parenta370c43bbb8cf8b889537cab709fc8aab11ffa3a (diff)
Merge pull request #30 from nicholas-leonard/rtd
readthedocs
Diffstat (limited to 'README.md')
-rw-r--r--README.md36
1 files changed, 18 insertions, 18 deletions
diff --git a/README.md b/README.md
index 09938de..fa7cbff 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,4 @@
-TREPL: A REPL for Torch
-=======================
+# TREPL: A REPL for Torch
```
______ __ | Torch7
@@ -11,7 +10,8 @@ TREPL: A REPL for Torch
th>
```
-A pure Lua REPL for LuaJIT, with heavy support for Torch types.
+A pure Lua [REPL](https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop)
+for LuaJIT, with heavy support for Torch types.
Uses Readline for tab completion.
@@ -20,21 +20,21 @@ comes packed with all these features:
Features:
-* Tab-completion on nested namespaces
-* Tab-completion on disk files (when opening a string)
-* History
-* Pretty print (table introspection and coloring)
-* Auto-print after eval (can be stopped with ;)
-* Each command is profiled, timing is reported
-* No need for '=' to print
-* Easy help with: `? funcname`
-* Self help: `?`
-* Shell commands with: $ cmd (example: `$ ls`)
-* Print all user globals with `who()`
-* Import a package's symbols globally with `import(package)`
-* Require is overloaded to provide relative search paths: `require('./mylocallib/')`
-* Optional strict global namespace monitoring
-* Optional async repl (based on [async](https://github.com/clementfarabet/async))
+ * Tab-completion on nested namespaces
+ * Tab-completion on disk files (when opening a string)
+ * History
+ * Pretty print (table introspection and coloring)
+ * Auto-print after eval (can be stopped with ;)
+ * Each command is profiled, timing is reported
+ * No need for '=' to print
+ * Easy help with: `? funcname`
+ * Self help: `?`
+ * Shell commands with: $ cmd (example: `$ ls`)
+ * Print all user globals with `who()`
+ * Import a package's symbols globally with `import(package)`
+ * Require is overloaded to provide relative search paths: `require('./mylocallib/')`
+ * Optional strict global namespace monitoring
+ * Optional async repl (based on [async](https://github.com/clementfarabet/async))
Install
-------