1 Answer

0 votes
by

In order to display a constant string, command can be used is echo <constant string>

If order to display the value of a variable you can use command like echo ${variable name>>

Above is using PHP. If you are using Java, replace echo with System.out.println

...