14 lines
226 B
Solidity
14 lines
226 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.28;
|
|
|
|
contract Gradebook {
|
|
|
|
|
|
// addStudent(addr, name)
|
|
|
|
// submitScore(addr, points)
|
|
// this function should fire an event when points are added
|
|
|
|
// getGrade(addr)
|
|
}
|