8 lines
140 B
Plaintext
Raw Normal View History

2022-08-07 14:14:04 -07:00
function function_append(func, func2){
return munction(function() {
func();
func2();
})
}
//probably does not work i messed it up lol