🇧🇧
Solidity
Solidity is an object-oriented, high-level language for implementing smart contracts. Smart contracts are programs which govern the behaviour of accounts within the Ethereum state.
solidity
// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.9.0;contract HelloWorld {function helloWorld() external pure returns (string memory) {return "Hello, World!";}}