Skip to content

Commit ca8a313

Browse files
update net interactive stdout out test notebook (#153)
1 parent 7c75e1f commit ca8a313

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
"metadata": {
36+
"language_info": {
37+
"name": "python"
38+
},
39+
"orig_nbformat": 4
40+
},
41+
"nbformat": 4,
42+
"nbformat_minor": 2
43+
}

0 commit comments

Comments
 (0)