Hi there 馃憢

Welcome to my blog

The Wonders of Markdown

Markdown is a lightweight markup language with plain-text formatting syntax. Its design allows it to be converted to many output formats, but the original tool by the same name only supports HTML. Markdown is widely used in blogging, instant messaging, online forums, collaborative software, documentation pages, and even for generating static websites. What You Can Do with Markdown Markdown is incredibly versatile. Here are some of the things you can do with it:...

September 3, 2024 路 3 min 路 coinleft

Solidity Syntax Overview

Solidity is a contract-oriented, high-level programming language for implementing smart contracts on Ethereum. Here鈥檚 an overview of its syntax and features, demonstrated with code examples. Contract Definition In Solidity, a contract is the fundamental building block. It is similar to a class in object-oriented programming. // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract SimpleStorage { uint256 public storedData; function set(uint256 x) public { storedData = x; } function get() public view returns (uint256) { return storedData; } } Key Points: pragma solidity ^0....

September 3, 2024 路 4 min 路 coinleft