import System.Runtime.InteropServices [DllImport("User32.dll", EntryPoint:"MessageBox")] def MessageBox(hwnd as int, text as string, caption as string, type as int): pass MessageBox(0, "Hello, Win32 API(Boo) World!", "Hello, World", 0)