diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-08-22 14:02:48 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-08-22 14:02:48 -0400 |
| commit | ad51b208b4924d04f1d6a804178a67994b4f9e59 (patch) | |
| tree | 9ae29e0af02b7406a0cf07fdd8b0dd7fdac0aedf /docs/libraries.md | |
| parent | 2055439be4f5053b9a4d631cefd8bb7c83a8e4e3 (diff) | |
Overhaul of import syntax. Now everything uses `use`: `use foo`, `use
./foo.tm`, `use <foo.h>`, `use libfoo.so`
Diffstat (limited to 'docs/libraries.md')
| -rw-r--r-- | docs/libraries.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libraries.md b/docs/libraries.md index cd69a14a..41f29cba 100644 --- a/docs/libraries.md +++ b/docs/libraries.md @@ -48,7 +48,7 @@ Now, what happens if we want to _use_ the compiled object file? ``` // File: baz.tm -foo := use ./foo +foo := use ./foo.tm func say_stuff(): say("I got {foo.my_variable} from foo") |
