|
|
|
|
|
by jey
704 days ago
|
|
The problem is that Lua is Turing complete, so you can write programs that don't halt or which take an input-dependent duration to halt. Example: while true do
print("meow?")
end
In contrast, each CEL expression has a maximum depth which directly determines how long it takes to execute. (More precisely: by calculating the maximum costs up the expression tree from leaves to root.) |
|