Getting error "Exeption in thread "main" java.lang.Error 'Unresolved compilation problem':
at ClassName.main(ProjectName.java:7)
this is just a test program to see how runtimes work
public static void main(String[] args)
Runtime runtime = Runtime.getRuntime();
String[] s = new String[] {"C:\\Window\\SystemApps\\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\\MicrosoftEdge.exe", "https://youtu.be/dQw4w9WgXcQ"};
runtime.exec(s);
}