Outputs the value and type of one or more arguments for debugging.
1 2 3 4
dump("test") // Outputs: string("test") dump(42) // Outputs: number(42) dump(true) // Outputs: bool(true) dump([1, 2, 3]) // Outputs: array([1, 2, 3])