luatex-core.tex /size: 634 b    last modification: 2020-07-01 14:35
1\starttext
2
3\startluacode
4
5    local report = logs.reporter("core")
6
7    report("kpse used        : %i",status.kpse_used)
8    report("shell escape     : %i",status.shell_escape)
9    report("shell restricted : %i",status.shell_restricted)
10    report("safer option     : %i",status.safer_option)
11
12    if false then
13
14        for l in io.open("luatex-core.lua"):lines() do
15            print(l)
16        end
17
18        for l in io.lines("luatex-core.lua") do
19            print(l)
20        end
21
22    end
23
24\stopluacode
25
26\startTEXpage[foregroundstyle=mono,offset=10pt]
27    LUATEXCOREVERSION: \cldcontext{LUATEXCOREVERSION}
28\stopTEXpage
29
30\stoptext
31