fork download
  1. import com.jinvoke.win32.User32;
  2. import static com.jinvoke.win32.WinConstants.*;
  3.  
  4. public class HelloWindows2 {
  5. public static void main(String[] args) {
  6. User32.MessageBox(0,
  7. "This MessageBox is a native Win32 MessageBox",
  8. "Hello Windows", MB_ICONINFORMATION|MB_OK);
  9. }
  10. }
  11.  
Runtime error #stdin #stdout 0.02s 7504KB
stdin
Standard input is empty
stdout