Files
SQLLLM/previousVersion/0.1/test/test_2.jl
narawat lamaiin d4895a728d update
2024-12-09 20:29:28 +07:00

24 lines
227 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)