We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 661d0e7 commit 9531f72Copy full SHA for 9531f72
app/build.gradle
@@ -8,8 +8,8 @@ android {
8
applicationId "com.duy.pascal.compiler"
9
minSdkVersion rootProject.ext.minSdkVersion as Integer
10
targetSdkVersion rootProject.ext.targetSdkVersion as Integer
11
- versionCode 114
12
- versionName "4.1.1"
+ versionCode 115
+ versionName "4.1.2"
13
vectorDrawables.useSupportLibrary = true
14
multiDexEnabled true
15
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
test_pascal/test_set/test_set_operate.pas
@@ -34,7 +34,7 @@
34
Result := S2 > S1; { True }
35
writeln(Result);
36
37
- Result := S2 > = S1; { True }
+ Result := S2 >= S1; { True }
38
writeln(s3);
39
40
end.
0 commit comments