blob: 3cd22be2bf9282b7abb7dba5ed025399de3f8eb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
tags:
- programming
- dictionary
---
A scalar type represents a single value. Thus
- int
- float
- string
- double
- boolean
are all scalar types ( even though they can have a class such as in python or rust! ).
|