1
0
Fork 0
mirror of https://github.com/Reuh/anselme.git synced 2025-10-28 00:59:31 +00:00

Typed swap value & type order

This commit is contained in:
Étienne Fildadut 2023-12-28 14:30:28 +01:00
parent 507dd5930e
commit a7f2362199
2 changed files with 6 additions and 6 deletions

View file

@ -50,9 +50,9 @@ return {
end
},
{
"type", "(type, value)",
function(state, t, v)
return Typed:new(t, v)
"type", "(value, type)",
function(state, v, t)
return Typed:new(v, t)
end
},
{ "true", Boolean:new(true) },