Hi,
What am I doing wrong in this piece of code This seems to happen whenever I use the printIn() function. I have tried resetting multiple times too but to no avail. Do let me know if you can spot the error!
Thanks in advance!
package com.codegym.task.task01.task0138;
/*
Favorite poem
*/
public class Solution {
public static void main(String[] args) {
System.out.println("My favorite poem:");
System.out.printIn("hi");
System.out.printIn("save");
System.out.printIn("me");
System.out.printIn("cries");
System.out.printIn("in pain");
}
}