Skip to content
Open

com #87

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"python.analysis.autoImportCompletions": true
}
50 changes: 39 additions & 11 deletions csharp-101/01-Hello World.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,13 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 6,
"metadata": {
"dotnet_interactive": {
"language": "csharp"
},
"vscode": {
"languageId": "polyglot-notebook"
}
},
"outputs": [
Expand Down Expand Up @@ -64,23 +67,26 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 10,
"metadata": {
"dotnet_interactive": {
"language": "csharp"
},
"vscode": {
"languageId": "polyglot-notebook"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Jayme\r\n"
"Yo, Two, 1 , er , 4e\r\n"
]
}
],
"source": [
"var aFriend = \"Jayme\";\n",
"var aFriend = \"Yo, Two, 1 , er , 4e\";\n",
"Console.WriteLine(aFriend);"
]
},
Expand All @@ -97,23 +103,26 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 12,
"metadata": {
"dotnet_interactive": {
"language": "csharp"
},
"vscode": {
"languageId": "polyglot-notebook"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Hello Jayme!\r\n"
"Hello Yo, Two, 1 , er , 4e!,!\r\n"
]
}
],
"source": [
"Console.WriteLine(\"Hello \" + aFriend + \"!\");"
"Console.WriteLine(\"Hello \" + aFriend + \"!,!\" );"
]
},
{
Expand All @@ -127,10 +136,13 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 13,
"metadata": {
"dotnet_interactive": {
"language": "csharp"
},
"vscode": {
"languageId": "polyglot-notebook"
}
},
"outputs": [
Expand Down Expand Up @@ -173,23 +185,39 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 61,
"metadata": {
"dotnet_interactive": {
"language": "csharp"
},
"vscode": {
"languageId": "polyglot-notebook"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Playground\r\n"
"Yobdedo.. string, os, påå @£$strangg svidere..!!!\n",
"rq3€€ string, os, påå @£$strangg svidere..string, os, påå @£$strangg svidere..?\n",
"qquoaa string, os, påå @£$strangg svidere..string, os, påå @£$strangg svidere..#:)\n",
"a string, os, påå @£$strangg svidere..string, os, påå @£$strangg svidere..\n",
"oxzcf Forsq5¤¤¤. LFSign Forsq5\n",
"=== !!!A\n"
]
}
],
"source": [
"Console.WriteLine(\"Playground\");"
"aFriend = \"string, os, påå @£$strangg svidere..\";\n",
"Console.WriteLine($\"Yobdedo.. {aFriend}!!!\");\n",
"Console.WriteLine($\"rq3€€ {aFriend + aFriend}?\");\n",
"Console.WriteLine($\"qquoaa {aFriend = aFriend = aFriend + aFriend}#:)\");\n",
"Console.WriteLine($\"a {aFriend}\");\n",
"aFriend = \"Forsq5\";\n",
"Console.WriteLine($\"oxzcf {aFriend}¤¤¤. LFSign {aFriend}\");\n",
"aFriend = \"!!!\";\n",
"Console.WriteLine($\"=== {aFriend}A\" )"
]
},
{
Expand Down
24 changes: 24 additions & 0 deletions csharp-101/Untitled-1.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": ".venv",
"language": "python",
"name": "python3"
},
"language_info": {
"name": "python",
"version": "3.12.1"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Loading