⌨️ (02:01:16) Lesson 2: Welcome to Remix! Simple Storage
💻 Code: https://github.com/PatrickAlphaC/simple-storage-fcc
⌨️ (00:09:05) Lesson 1: Blockchain Basics
注
此篇文章版权属于@毛超颖 所有。其他媒体、网站或个人转载使用时不得进行商业性的原版原式的转载,也不得歪曲和篡改本网站所发布的内容。 由于本人也是刚入圈的小白,如有错误,欢迎指正~
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import './SimpleStorage.sol';
contract ExtraStorage is SimpleStorage{ function store(uint256 _favoriteNumber) public override { favoriteNumber = _favoriteNumber + 3; } }
text-overflow: ellipsis;
.text-overflow(@lines) when (@lines > 1) { display: -webkit-box; overflow: hidden; text-overflow: ellipsis; -webkit-line-clamp: @lines; -webkit-box-orient: vertical; white-space: normal; }