Bump version to 4.1-6
[LibreOffice.git] / basic / qa / basic_coverage / string_left_01.vb
blobef896bef1009868e68ddf4ea0e2df6353ebe76cf
2 ' This file is part of the LibreOffice project.
4 ' This Source Code Form is subject to the terms of the Mozilla Public
5 ' License, v. 2.0. If a copy of the MPL was not distributed with this
6 ' file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 Function doUnitTest as Integer
12 Dim s1 As String
13 Dim s2 As String
15 s1 = "abc"
17 s2 = Left(s1, 2)
19 If s2 = "ab" Then
20 doUnitTest = 1
21 Else
22 doUnitTest = 0
23 End If
25 End Function