xxxxxxxxxx
#def test
print("Hello, world!") #for text
print(test) #for variable
print("Hello,", test) # for text + variable
xxxxxxxxxx
#Well in Python, you just do...
print("Hi everyone!")
# Printing using a variable...
print_var = "print"
print(print_var) # will print "print"
#Good luck coding!
#By Codexel
xxxxxxxxxx
#include <iostream>
using namespace std;
int main()
{
cout << "Ma devise est 'Parler peu mais parler bien'." << endl;
cout << "Je m'appelle Camthalion" << endl;
cout << "Coucou !" << endl;
}
xxxxxxxxxx
print('Hello world') # This would print 'Hello world' as an output to the user.