From 06c14fea15727152de151214906ce934be9c4421 Mon Sep 17 00:00:00 2001 From: Cory Marshall Date: Fri, 26 Aug 2011 17:25:50 -0400 Subject: [PATCH] Added PowerBasic for Windows (/p/pbwin.bas) --- p/pbwin.bas | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 p/pbwin.bas diff --git a/p/pbwin.bas b/p/pbwin.bas new file mode 100644 index 00000000..33ce1231 --- /dev/null +++ b/p/pbwin.bas @@ -0,0 +1,8 @@ +#COMPILE EXE +#DIM ALL + +FUNCTION PBMAIN () AS LONG + + MSGBOX "Hello World" + +END FUNCTION