Files
Basalt2/node_modules/shiki/samples/vyper.sample
Robert Jelic 31787b0e9b Fix
2025-02-16 18:04:24 +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