Print Text
Printing text is one of the universal features for most programming languages. Printing or logging text can help programmers manually debug code by being able to read specific variable values to check if they match the expected value. Note that in object oriented languages, such as C++, Java or Kotlin, the code must be written in context of either a function or object in order for the code to be compiled and executed properly. If your code isn't running properly, check if the language you are writing in is object oriented and make sure to encapsulated the code in the appropriate block.