Functions that print their own source code. Python x = ['print("x =", x)', 'for s in x: print(s)'] print("x =", x) for s in x: print(s) JS function f() {console.log(f.toString() + "f();")}f();