Hey, this is just a dumb little question that I thought of while doing something stupid.
I was trying to automate making that oneinefficient way of checking if a number is even or odd, because I was curious to if I could do it.
(basically automating writing a iseven function like this)
How many lines of code can GMS handle in one script?
I was trying to automate making that one
(basically automating writing a iseven function like this)
GML:
/// @function iseven(value);
/// @param {string} _val The number to check
/// @description Check if the specified number is even.
function iseven(_val)
{...