From b5b30bd227088526bb0370f0806c84228c9dc1b4 Mon Sep 17 00:00:00 2001 From: Niels Buwen Date: Fri, 29 Mar 2024 08:45:06 +0100 Subject: [PATCH] Include arbitrary function call in Readme --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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) +```