home *** CD-ROM | disk | FTP | other *** search
- PCBASIC programs can be written for easy
-
- translation into foreign languages. The menus, dialogs
-
- and titles can all be defined in the resource file. Even
-
- text messages, like these, can be put in the resource
-
- file as string lists, such as this :
-
-
-
- resource 'STR#' (505, purgeable) {
-
- " PCBASIC programs can be written for easy",
-
- " translation into foreign languages."
-
- }
-
- The strings are used in BASIC like DATA statements :
-
-
-
- RESTORE #501
-
- READ Msg$1,Msg$2,Msg$3,Msg$4
-
- ? Msg$1 : ? Msg$2 : ? Msg$3 : ? Msg$4
-
-
-
- END
-
-