I want my output to be in multiple lines but \n
doesn't seem to be working for me. Am I doing something wrong? Thanks
DESIRED OUTPUT
Hello: name
Weight in Kilograms: XX
Height in meters: XX
BMI: XX
CODE
SimpleOutput.showInformation("Hello: " + name \n "Weight in kilograms: " + weightKilograms \n "Height in meters: " + heightMeters \n "BMI: " + (int)bmi);