0
can i use print("hello world") instead of print_text() ?
should i define print_text() function to insert to decor function?
3 Answers
0
print ("hello world")
print ("hello world")
print ("ŠæŃŠøŠ²ŠµŃ Š§ŠµŠ»Š¾Š²ŠµŠŗ")
0
c++: #include <iostream>
int Main () {
cout << "Hello World"; }
java: public static void main (String [] args) {
System.out.print ("Hello World"); }
Python: print ("Hello World");
c++ & java: Python why you do dis.
0
c++ is a little more like this:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World";
return 0;
}