Added missing function call in example

Feel like this is the real example you tried to give.
This commit is contained in:
Roemer Blom 2024-09-14 14:13:31 +02:00
parent 662e07dacd
commit 46c6a433a6

View File

@ -484,7 +484,7 @@
"metadata": {},
"outputs": [],
"source": [
"fun = () -> a + b\n",
"fun = () -> add(a, b)\n",
"t = Task(fun)\n",
"schedule(t)"
]