diff --git a/README.md b/README.md index 8df440c..f429f76 100644 --- a/README.md +++ b/README.md @@ -92,3 +92,16 @@ or type `cell_view.` 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) +```