# code-block-pro/1.27.6/build/shiki/samples/vyper.sample

Code Block Pro – Beautiful Syntax Highlighting, version 1.27.6. 12 lines.

- Page: https://pluginprobe.com/plugins/code-block-pro/1.27.6/code/build/shiki/samples/vyper.sample
- Raw: https://pluginprobe.com/plugins/code-block-pro/1.27.6/raw/build/shiki/samples/vyper.sample
- Modified: 2023-06-26T00:21:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-block-pro/1.27.6/code/build/shiki/samples/vyper.sample#L10-L20`.

```
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

```
