Empty list-print
Jump to navigation
Jump to search
[]-print is self explanatory. You just print an empty list. However, you're required to make the shortest code to print an empty list and also creating the variable with the empty list
A pesudocode if you didn't understand:
o m ( _ [] )
Python
print(_:=[])
JavaScript
console.log(_=[])