In this article we are going to learn about solidity programing language. If you want to learn solidity to become a blockchain or want to create smart contract this article only you need to read and follow along. These are few thing you should know before start that you can start coding in solidity by just reading this article and Practice code which mention in the article. Article divided into three parts this is the Part 1 , Part 2 and Part 3 is here. in this we just start with coding this is beginners friendly article. So without any delay let’s begin with study.
what is solidity? Solidity is a programming language which used to write smart contract which deploy on Ethereum blockchain. I suggest you to practice coding on Remix Ide it’s a beginner friendly platform you can watch a YouTube short video for quick start with remix ide.
concept of .sol
.sol is the extension of solidity like if we want to write code in html we use nameoffile.html and for javascript we use nameoffile.js similarly we use nameoffile.sol here .sol is the extension for solidity like we have .js for JavaScript and .html for HTML and so on.
You can paste this piece of lines in remix ide after create a file as I mention above and these lines are just comment and basic code basically your first smart contract so All the Best for Your Learning๐ . And don’t forget to read second and third article of it for having A to Z Knowledge of solidity.
//How to comment in solidity
//There are 2 ways to comment in solidity such as // and /**/
//For single line can use // and for multiple lines to comment use /**/
//For Example ๐
//Here is single line comment
/*Here
is
Multiple
line
comment
*/
//When ever we write our smart contract we have to mention lincense on the //top of it such as ๐
// SPDX-License-Identifier: MIT
//But if we don’t use it we can still deploy our smart contract without any error //but going to face only a warning but it is recommended to use it or mention //due
//to which we have copyright of our smart contract means if someone copy our //smart contract we have right to legally tell them look we have copyright of that
//smart contract
//But it this case we use MIT license which means it is open source contract and //anyone can use it .
//we have to mention solidity version basically which compiler version we are //going to use to compile smart contract such as ๐
pragma solidity ^0.8.29;
//In this case use version of compiler equal or grater to 0.8.29
//But if want to use between of two version can write such as >=0.8.11>0.8.22 //according to our need
//And this is how we declare our smart contract all logic or code goes inside //these curly braces.
contract SimpleStorage{
//All code goes here
}
Pingback: Learn Solidity Programming Language in the easiest way. - Trend for USA