1 2 3 4 5 6 7 8 9 10 11 12 13 14
/// path: draw.typ /// The draw line. #let line() = 1; ----- /// path: lib.typ #import "draw.typ" ----- #import "lib.typ" #let draw = lib.draw; #import draw: * #(/* position after */ line);