From 667ffaa98262b0e60a251cb201f9166785076b09 Mon Sep 17 00:00:00 2001 From: isopen Date: Sun, 21 Sep 2025 18:30:47 +0700 Subject: [PATCH 1/2] Update README.md --- example/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/example/README.md b/example/README.md index 0fbf0f3f6836..0cd1fefcf261 100644 --- a/example/README.md +++ b/example/README.md @@ -9,6 +9,7 @@ Also, take a look at our [Getting Started](https://core.telegram.org/tdlib/getti TDLib can be easily used from almost any programming language on any platform. See a [TDLib build instructions generator](https://tdlib.github.io/td/build.html) for detailed instructions on how to build TDLib. Choose your preferred programming language to see examples of usage and a detailed description: +- [Assembly languages](#assembly) - [Python](#python) - [JavaScript](#javascript) - [Go](#go) @@ -38,6 +39,13 @@ Choose your preferred programming language to see examples of usage and a detail - [G](#g) - [Other](#other) + +## Using TDLib in Assembly projects + +TDLib can be used from [Assembly](#assembly) through the [JSON](https://github.com/tdlib/td#using-json) interface. + +You can also see [nasm_tdjson_example](https://gist.github.com/isopen/41481eda87db2e6426af75be9d1f3748). + ## Using TDLib in Python projects From 82c5829c7a7fda31c11ffb472b3c4ea3937ad3a1 Mon Sep 17 00:00:00 2001 From: isopen Date: Sun, 21 Sep 2025 18:33:39 +0700 Subject: [PATCH 2/2] Update README.md --- example/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/README.md b/example/README.md index 0cd1fefcf261..295ce40c5598 100644 --- a/example/README.md +++ b/example/README.md @@ -42,7 +42,7 @@ Choose your preferred programming language to see examples of usage and a detail ## Using TDLib in Assembly projects -TDLib can be used from [Assembly](#assembly) through the [JSON](https://github.com/tdlib/td#using-json) interface. +TDLib can be used from Assembly through the [JSON](https://github.com/tdlib/td#using-json) interface. You can also see [nasm_tdjson_example](https://gist.github.com/isopen/41481eda87db2e6426af75be9d1f3748).