Skip to content

Commit

Permalink
Include arbitrary function call in Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsbuwen committed Mar 29, 2024
1 parent 0277731 commit b5b30bd
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,16 @@ or type `cell_view.<TAB>` in jupyter/ipython
>>> print(cell_view.b_box)
[[0, 10], [2, 8]]
```

##### Call any SKILL function

```python
>>> ws['plus'](3, 4)
7
```

*equivalent to:*

```lisp
(plus 3 4)
```

0 comments on commit b5b30bd

Please sign in to comment.