Skip to content

Commit 8b6ca68

Browse files
Intro to Julia Variables
1 parent 87c0ebc commit 8b6ca68

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

individual_modules/introduction_to_julia/variables.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"\n",
2222
"## Overview\n",
2323
"\n",
24-
"Variable in Julia are created with an assignment statement. Julia uses dynamic typing, such as specifying a int below. "
24+
"Variables in Julia are created with an assignment statement. Julia uses dynamic typing, such as specifying an `int` below. "
2525
]
2626
},
2727
{
@@ -52,9 +52,9 @@
5252
"source": [
5353
"## Basic Types \n",
5454
"- **Integers (Int)**: Represent whole numbers. Julia selects appropriate bit sizes based on the platform (e.g., Int32, Int64).\n",
55-
"- **Floating-point numbers (Float32, Float64)**: Used for decimal numbers. Precision can vary.\n",
56-
"- **Strings (String)**: Used for text. Julia uses UTF-8 encoded strings.\n",
57-
"- **Booleans (Bool)**: Logical data type with two states: true and false."
55+
"- **Floating-point numbers (Float)**: Used for decimal numbers. Precision can vary (e.g., Float32, Float64).\n",
56+
"- **Strings (String)**: Represents text. Julia uses UTF-8 encoded strings.\n",
57+
"- **Booleans (Bool)**: Represents logic. Logical data type with two states: `true` and `false`."
5858
]
5959
},
6060
{

0 commit comments

Comments
 (0)