Skip to content

Commit e3a055a

Browse files
committed
First notebook
1 parent 3ec0a31 commit e3a055a

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,3 +348,6 @@ MigrationBackup/
348348

349349
# Ionide (cross platform F# VS Code tools) working folder
350350
.ionide/
351+
352+
# ignore Jupyter notebook temp folder
353+
.ipynb_checkpoints/

notebooks/0101-FirstSession.ipynb

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# Session 1: Types, Keywords, and Operators with C#\n",
8+
"\n",
9+
"In this first session, we're going to start learning about object-oriented programming with C#. We'll touch on the very basics around variable types, language keywords, and how we can use operators to make variables work together for us."
10+
]
11+
},
12+
{
13+
"cell_type": "code",
14+
"execution_count": 6,
15+
"metadata": {},
16+
"outputs": [
17+
{
18+
"data": {
19+
"text/html": [
20+
"2"
21+
]
22+
},
23+
"metadata": {},
24+
"output_type": "display_data"
25+
}
26+
],
27+
"source": [
28+
"var i = 0;\n",
29+
"i++;\n",
30+
"\n",
31+
"display(++i);"
32+
]
33+
}
34+
],
35+
"metadata": {
36+
"kernelspec": {
37+
"display_name": ".NET (C#)",
38+
"language": "C#",
39+
"name": ".net-csharp"
40+
},
41+
"language_info": {
42+
"file_extension": ".cs",
43+
"mimetype": "text/x-csharp",
44+
"name": "C#",
45+
"pygments_lexer": "csharp",
46+
"version": "8.0"
47+
}
48+
},
49+
"nbformat": 4,
50+
"nbformat_minor": 4
51+
}

0 commit comments

Comments
 (0)