Files
Basalt2/node_modules/shiki/samples/vyper.sample
Robert Jelic 5c15cf28fa Test
2025-02-10 07:12:35 +01:00

12 lines
220 B
Plaintext

storedData: public(int128)
@external
def __init__(_x: int128):
self.storedData = _x
@external
def set(_x: int128):
self.storedData = _x
# https://github.com/vyperlang/vyper/blob/master/examples/storage/storage.vy