forked from amazingfate/loongoffice
New Module Basic module New AllModules() collection in Application module Extension of regex to backward searches Change-Id: Id58f3b29d08e9f0b73e192cfc0c2a99988e73fcf
13 lines
377 B
XML
13 lines
377 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
|
|
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Test" script:language="StarBasic">Option Explicit
|
|
'Option Compatible
|
|
|
|
Sub Main
|
|
Dim a, b()
|
|
_ErrorHandler(False)
|
|
TraceConsole()
|
|
exit sub
|
|
End Sub
|
|
|
|
</script:module> |