update to kotlin 1.5.10

This commit is contained in:
Irmen de Jong 2021-05-29 15:25:17 +02:00
parent 42c5c0cb9f
commit 572bb38ddb
5 changed files with 38 additions and 13 deletions

View File

@ -1,7 +1,7 @@
plugins {
id 'java'
id 'application'
id "org.jetbrains.kotlin.jvm" version "1.5.0"
id "org.jetbrains.kotlin.jvm" version "1.5.10"
id 'com.github.johnrengelman.shadow' version '6.1.0'
}

View File

@ -1,7 +1,7 @@
plugins {
id 'antlr'
id 'java'
id "org.jetbrains.kotlin.jvm" version "1.5.0"
id "org.jetbrains.kotlin.jvm" version "1.5.10"
}
targetCompatibility = 11

View File

@ -2,7 +2,7 @@
plugins {
id 'java'
id 'application'
id "org.jetbrains.kotlin.jvm" version "1.5.0"
id "org.jetbrains.kotlin.jvm" version "1.5.10"
id 'com.github.johnrengelman.shadow' version '6.1.0'
}

View File

@ -1,17 +1,42 @@
%import textio ; txt.*
%zeropage basicsafe
%zeropage kernalsafe
main {
sub start() {
ubyte @shared xx=99
uword @shared asmvar
%asm {{
inc xx
lda asmvar
ldy asmvar+1
}}
txt.nl()
ubyte xx
repeat 10 {
xx++
}
repeat 10 {
xx++
}
repeat 10 {
xx++
}
repeat 10 {
xx++
}
repeat 10 {
xx++
}
repeat 1000 {
xx++
}
repeat 1000 {
xx++
}
repeat 1000 {
xx++
}
repeat 1000 {
xx++
}
repeat 1000 {
xx++
}
str string1 = "stringvalue\n"
str string2 = "stringvalue\n"

View File

@ -2,7 +2,7 @@
plugins {
id 'java'
id 'application'
id "org.jetbrains.kotlin.jvm" version "1.5.0"
id "org.jetbrains.kotlin.jvm" version "1.5.10"
id 'com.github.johnrengelman.shadow' version '6.1.0'
}