Files
SQLLLM/test/test_2.jl
narawat lamaiin 1739972440 update
2024-08-28 05:56:25 +07:00

24 lines
204 B
Julia

using Revise
function testf(a)::NamedTuple{(:a, :b), Tuple{Union{Nothing, Int}, Int}}
if a == 1
return (a=nothing, b=5)
else
return (a=5, b=5)
end
end
q = testf(1)
w = testf(2)