We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c75e1f commit ca8a313Copy full SHA for ca8a313
tests/notebooks/net-ineractive.ipynb
@@ -0,0 +1,43 @@
1
+{
2
+ "cells": [
3
+ {
4
+ "cell_type": "code",
5
+ "execution_count": 1,
6
+ "metadata": {
7
+ "dotnet_interactive": {
8
+ "language": "csharp"
9
+ },
10
+ "polyglot_notebook": {
11
+ "kernelName": "csharp"
12
13
+ "vscode": {
14
+ "languageId": "polyglot-notebook"
15
+ }
16
17
+ "outputs": [
18
19
+ "name": "stdout",
20
+ "output_type": "stream",
21
+ "text": [
22
+ "line 0\n",
23
+ "line 1\n",
24
+ "line 2\n"
25
+ ]
26
27
+ ],
28
+ "source": [
29
+ "for (int i=0; i<3; i++) {\n",
30
+ " Console.WriteLine($\"line {i}\");\n",
31
+ "}"
32
33
34
35
36
+ "language_info": {
37
+ "name": "python"
38
39
+ "orig_nbformat": 4
40
41
+ "nbformat": 4,
42
+ "nbformat_minor": 2
43
+}
0 commit comments