Skip to content

Instantly share code, notes, and snippets.

@Fahmid-Shuvo
Forked from shayanb/Assignment2.sol
Created March 17, 2023 22:52
Show Gist options
  • Select an option

  • Save Fahmid-Shuvo/5a81116d9706758754beada998105bc2 to your computer and use it in GitHub Desktop.

Select an option

Save Fahmid-Shuvo/5a81116d9706758754beada998105bc2 to your computer and use it in GitHub Desktop.
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;
}
function setStudentNumber(uint _studentNumber) public {
studentNumber = _studentNumber;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment