mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-12-23 08:47:50 +00:00
12 lines
No EOL
311 B
Typst
12 lines
No EOL
311 B
Typst
|
|
#import"ident.typ";
|
|
#import "ident.typ":(a.b, b);
|
|
#import "ident.typ" as x:(a.b, b);
|
|
#import"ident.typ"as x:(/* test */ a.b,
|
|
/* test */ b /* test */, /* test */);
|
|
#import("ident.typ");
|
|
#import { "ident.typ" };
|
|
#import { "ident.typ" }:(a, b);
|
|
#import { "ident.typ" }:(
|
|
a, b);
|
|
#import { "ident.typ" }:(a.b, b); |