Skip to content

Commit b5b30bd

Browse files
authored
Include arbitrary function call in Readme
1 parent 0277731 commit b5b30bd

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,16 @@ or type `cell_view.<TAB>` in jupyter/ipython
9292
>>> print(cell_view.b_box)
9393
[[0, 10], [2, 8]]
9494
```
95+
96+
##### Call any SKILL function
97+
98+
```python
99+
>>> ws['plus'](3, 4)
100+
7
101+
```
102+
103+
*equivalent to:*
104+
105+
```lisp
106+
(plus 3 4)
107+
```

0 commit comments

Comments
 (0)