From 415fe2a93df241b2035e1feedcaf91028d87d228 Mon Sep 17 00:00:00 2001 From: Diego Colombo Date: Fri, 26 May 2023 21:03:33 +0100 Subject: [PATCH] fix --- NotebookTestScript.dib | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/NotebookTestScript.dib b/NotebookTestScript.dib index 68fbda5789..0d3f1fd6b6 100644 --- a/NotebookTestScript.dib +++ b/NotebookTestScript.dib @@ -73,10 +73,6 @@ y++; document.getElementById("output").innerText = `The value is ${y}.`; console.log(`The value is ${y}.`); -#!csharp - -System.Diagnostics.Debugger.Launch(); - #!markdown # Execute the next cell. After execution, the output immediately below should be: @@ -115,11 +111,7 @@ And the `POLYGLOT NOTEBOOK: VARIABLES` window should contain a variable with nam #!javascript -await kernel.root.send({ commandType: 'SubmitCode', command: { code: 'var csharpVarFromJs = 1234; Console.WriteLine(csharpVarFromJs); csharpVarFromJs.Display();', targetKernelName: 'csharp' } }); - -#!csharp - -System.Diagnostics.Debugger.Launch(); +await kernel.root.send({ commandType: 'SubmitCode', command: { code: 'var csharpVarFromJs = 1234; Console.WriteLine(csharpVarFromJs);', targetKernelName: 'csharp' } }); #!markdown