Skip to content

Instantly share code, notes, and snippets.

View Fahmid-Shuvo's full-sized avatar

B M Fahmid Jahur Shuvo Fahmid-Shuvo

View GitHub Profile
@Fahmid-Shuvo
Fahmid-Shuvo / Assignment2.sol
Created March 17, 2023 22:52 — forked from shayanb/Assignment2.sol
Assignment 2 for 6620 Class (Nov 2018)
pragma solidity ^0.4.22;
contract assignmentTwo {
uint public studentNumber;
address public student;
constructor() public {
student = msg.sender;
}