From 7157a2e30e3faaab0658428f8e429f8272da6ff8 Mon Sep 17 00:00:00 2001 From: Novus Nota <68142933+novusnota@users.noreply.github.com> Date: Wed, 20 Nov 2024 12:21:03 +0100 Subject: [PATCH] Update docs/src/content/docs/book/import.mdx Co-authored-by: Anton Trunov --- docs/src/content/docs/book/import.mdx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/docs/src/content/docs/book/import.mdx b/docs/src/content/docs/book/import.mdx index c5b1c738e..8fb99715a 100644 --- a/docs/src/content/docs/book/import.mdx +++ b/docs/src/content/docs/book/import.mdx @@ -50,14 +50,6 @@ import "./dns.fc"; native dnsStringToInternal(str: String): Slice?; ``` -## Import Fift code - -Tact does not allow you to import Fift code using the `import{:tact}` keyword. However, you can write almost any Fift code in [`asm{:tact}` functions](/book/functions#asm). The only limitations compared to writing `.fif` files come from trying to redefine the right brace `}`, using it out of place or otherwise messing with it. - -Note, that the `Fift.fif` and `Asm.fif` libraries are imported and accessible by default, so you must not include those yourself. - -Read more about `asm{:tact}` functions in their dedicated section: [Assembly functions](/book/functions#asm). - ## Standard libraries See [Standard libraries overview](/ref/standard-libraries).