I assume IceShrimp's bubble instances are something I configure so instance timelines from the bubble appear in the bubble timeline?
Any instances yall would recommend to »befriend« like that?
functio.define (e.g. Scheme).functionname() { … }procedure (Ada, Pascal), proc (Nim), sub (Perl, Visual Basic).defmethod, but that is for multiple dispatch functions in specific. But common lisp uses defun, I think Clojure uses defn. In Scheme you can define functions using a specific let form and idk if Common LISP's labels is considered function definition?= (function definition by pattern/example).->, ML-family languages tend to use let (though we may treat it similarily as =?), but similar do Scheme's define, it is an unified way to define values and functions (let a = 3, let double a = a * 2, (define a 3), (define (double a) (* 2 a)).|params…| (the syntax bit differs), some languages use =>, ->. Then you got λ (or lambda for ASCII die-hards) and \ (like \x -> x + 42), but AFAIK it is just supposed to represent λ so may mean the same thing. C++ has some funky []() {} style definitions for closures.+ and - but i think that generally means something else, never used it though.multi for multiple dispatch functions, which also leads us to method keyword some languages use, but that also depends if methods and functions are the same in the language.