File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ cd example-app
1818composer repl
1919```
2020
21- > For web projects: [ web-skeleton] ( https://github.com/phel-lang/web-skeleton )
21+ > For web projects: [ web-skeleton] ( https://github.com/phel-lang/web-skeleton )
2222
2323## Manual Setup
2424
@@ -64,6 +64,8 @@ require __DIR__ . '/../vendor/autoload.php';
6464php -S localhost:8000 ./src/index.php
6565```
6666
67+ > 📘 [ More on running code] ( /documentation/cli-commands#run-a-script )
68+
6769## REPL
6870
6971``` bash
7779(println "Hello" name)
7880```
7981
82+ > 📘 [ More on REPL] ( /documentation/repl )
83+
8084## Debugging
8185
8286``` phel
@@ -91,26 +95,34 @@ return (require __DIR__ . '/phel-config.php')
9195 ->setKeepGeneratedTempFiles(true);
9296```
9397
98+ > 📘 [ More on debugging] ( /documentation/debug )
99+
94100## Build & Deploy
95101
96102``` bash
97103vendor/bin/phel build
98104php out/index.php
99105```
100106
107+ > 📘 [ More on build] ( /documentation/cli-commands/#build-the-project )
108+
101109## Testing
102110
103111``` bash
104112vendor/bin/phel test --filter foo
105113```
106114
115+ > 📘 [ More on testing] ( /documentation/testing )
116+
107117## Handy Macros
108118
109119``` phel
110120(when condition (println "if true"))
111121(-> {:name "Phel"} (:name) (str "Lang"))
112122```
113123
124+ > 📘 [ More on macros] ( /documentation/macros )
125+
114126## Editor Support
115127
116128- [ VSCode] ( https://github.com/phel-lang/phel-vs-code-extension )
You can’t perform that action at this time.
0 commit comments