1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-02-12 03:05:48 +00:00

[Tolk] Bump version to v0.8

This commit is contained in:
tolk-vm 2025-01-27 10:34:23 +03:00
parent 5b44e01455
commit e9d8f1611b
No known key found for this signature in database
GPG key ID: 7905DD7FE0324B12
6 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
// Standard library for Tolk (LGPL licence).
// It contains common functions that are available out of the box, the user doesn't have to import anything.
// More specific functions are required to be imported explicitly, like "@stdlib/tvm-dicts".
tolk 0.7
tolk 0.8
/**
Tuple manipulation primitives.

View file

@ -1,5 +1,5 @@
// A part of standard library for Tolk
tolk 0.7
tolk 0.8
/**
Gas and payment related primitives.

View file

@ -1,5 +1,5 @@
// A part of standard library for Tolk
tolk 0.7
tolk 0.8
/**
Lisp-style lists are nested 2-elements tuples: `(1, (2, (3, null)))` represents list `[1, 2, 3]`.

View file

@ -1,5 +1,5 @@
// A part of standard library for Tolk
tolk 0.7
tolk 0.8
/**
Dictionaries are represented as `cell` data type (cells can store anything, dicts in particular).

View file

@ -1,5 +1,5 @@
// A part of standard library for Tolk
tolk 0.7
tolk 0.8
/// Usually `c3` has a continuation initialized by the whole code of the contract. It is used for function calls.
/// The primitive returns the current value of `c3`.

View file

@ -18,6 +18,6 @@
namespace tolk {
constexpr const char* TOLK_VERSION = "0.7.0";
constexpr const char* TOLK_VERSION = "0.8.0";
} // namespace tolk