Skip to content

Arpeking/hello-world

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

// SPDX-License-Identifier: MIT pragma solidity ^0.8.20;

contract CompteurSimple { uint256 public compteur;

constructor() {
    compteur = 0;
}

function incrementer() public {
    compteur += 1;
}

function obtenirValeur() public view returns (uint256) {
    return compteur;
}

}

About

hello-world-

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors