1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-01 13:22:38 +02:00

fix(blockchain-content): fix typo in blockchain solidity content (#3490)

This commit is contained in:
Olusola Amoo
2023-02-25 19:48:45 +01:00
committed by GitHub
parent 70edfb0ac2
commit f393cb186e

View File

@@ -2,8 +2,8 @@
Solidity is an object-oriented programming language created specifically by Ethereum Network team for constructing smart contracts on various blockchain platforms, most notably, Ethereum.
* It's used to create smart contracts that implements business logic and generate a chain of transaction records in the blochain system.
* It acts as a tool for creating machine-level code and compilling it on the Ethereum Vitural Machine (EVM).
* It's used to create smart contracts that implements business logic and generate a chain of transaction records in the blockchain system.
* It acts as a tool for creating machine-level code and compiling it on the Ethereum Vitural Machine (EVM).
Like any other programming languages, Solidity also has variables, functions, classes, arithmetic operations, string manipulation, and many more.