Dynamic
One of the two main language types in programing is "Dynamic". Some example of dynamic languages are html, css, ruby, and javascript. The system will run your application until it hits an error.
Here’s an example of a dynamic language
a = 4
def say_hi(anything)
if anything < 100
p 'Hi'
else
“Summer sausage” + anything
end
end
say_hi(a)
~: > Hi
As you can see there was an error with Summer sausage adding 4 to it. They system wouldn’t hit that error because it worked on the IF statement. Until you pass in something else to hit the else statement. Your program will still run.