You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the example kernel-messaging, for the code "3+5", JSON object {"data": {"text/plain":"8"},...} will be returned and displayed. Actually, the logic value is 5 instead of "5". It is hard for the following code to consume the result.
Just wonder there is an intuitive way to get the returned value from code instead of something to display.
Proposed Solution
In the example, provide an example function similar to
async runCodeInKernel(code: string)=> any;
Thanks,
The text was updated successfully, but these errors were encountered:
Problem
In the example kernel-messaging, for the code "3+5", JSON object {"data": {"text/plain":"8"},...} will be returned and displayed. Actually, the logic value is 5 instead of "5". It is hard for the following code to consume the result.
Just wonder there is an intuitive way to get the returned value from code instead of something to display.
Proposed Solution
In the example, provide an example function similar to
async runCodeInKernel(code: string)=> any;
Thanks,
The text was updated successfully, but these errors were encountered: