-
-
Save Fahmid-Shuvo/5a81116d9706758754beada998105bc2 to your computer and use it in GitHub Desktop.
Assignment 2 for 6620 Class (Nov 2018)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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