mirror of
https://github.com/irmen/prog8.git
synced 2024-11-22 15:33:02 +00:00
update to kotlin 1.5.10
This commit is contained in:
parent
42c5c0cb9f
commit
572bb38ddb
@ -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'
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
@ -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'
|
||||
}
|
||||
|
||||
|
@ -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"
|
||||
|
@ -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'
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user