syntax– tag –
-
Tutorials and guides
Day 14. Solidity Basic Syntax – Error Handling –
In coding, error handling is a crucial element. Creating code that returns clear errors at the appropriate time helps in analyzing problems and deriving improvement measures when issues occur. This guide explains error handling in Solidity. -
Tutorials and guides
Day 9. Basic Syntax of Solidity – Reference Types & Mapping Types –
Reference types refer to the memory location where the value is stored, rather than the value itself. Unlike value types, where the value of the data is stored directly in the variable, reference types store only a reference to the location of the data. Reference types hold the position of data in memory, allowing memory usage to be optimized regardless of the data's size. Mapping types are data structures that store key-value pairs. -
Tutorials and guides
Day 8. Basic Syntax of Solidity – Value Types –
In Solidity, there are types like value types, reference types, and mapping types. Value types are used to define numerical and string types. In value types, the values are stored directly. -
Tutorials and guides
Day 7. Basic Syntax of Solidity – Development and Basic Structure with Remix –
From Day 7 onwards, we will explain the basic syntax of Solidity. As a development tool, we will use Remix (an online IDE environment), which was introduced as basic tools of web3. First, we will start with development using Remix and learn about the basic structure of Solidity programs. Let's delve into the explanation.
1