From 26ed231f61a8892b3ecbd2ba27951fa50843840e Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Wed, 7 Feb 2024 00:03:39 +0100 Subject: [PATCH] version --- examples/test.p8 | 34 +++++++++++++++++----------------- gradle.properties | 2 +- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/examples/test.p8 b/examples/test.p8 index 3d6bac2fc..77ec82e5b 100644 --- a/examples/test.p8 +++ b/examples/test.p8 @@ -15,23 +15,23 @@ main { xx -= 3 yy -= 3 -; txt.print_ub(array[1]) -; txt.spc() -; array[1]++ -; txt.print_ub(array[1]) -; txt.spc() -; array[1]-- -; txt.print_ub(array[1]) -; txt.nl() -; -; txt.print_ub(array[1]) -; txt.spc() -; array[xx]++ -; txt.print_ub(array[1]) -; txt.spc() -; array[xx]-- -; txt.print_ub(array[1]) -; txt.nl() + txt.print_ub(array[1]) + txt.spc() + array[1]++ + txt.print_ub(array[1]) + txt.spc() + array[1]-- + txt.print_ub(array[1]) + txt.nl() + + txt.print_ub(array[1]) + txt.spc() + array[xx]++ + txt.print_ub(array[1]) + txt.spc() + array[xx]-- + txt.print_ub(array[1]) + txt.nl() } } diff --git a/gradle.properties b/gradle.properties index 89d16a4c8..b96236dfb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,4 +5,4 @@ org.gradle.daemon=true kotlin.code.style=official javaVersion=11 kotlinVersion=1.9.22 -version=10.1 +version=10.2-SNAPSHOT