diff --git a/compiler/res/version.txt b/compiler/res/version.txt index 906522e09..c382960e3 100644 --- a/compiler/res/version.txt +++ b/compiler/res/version.txt @@ -1 +1 @@ -7.5-dev +7.5 diff --git a/docs/source/todo.rst b/docs/source/todo.rst index 18a337e15..af5956e9b 100644 --- a/docs/source/todo.rst +++ b/docs/source/todo.rst @@ -1,7 +1,7 @@ TODO ==== -For next compiler release (7.5) +For next compiler release (7.6) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ... diff --git a/examples/test.p8 b/examples/test.p8 index b4ed85812..1af4a1eb2 100644 --- a/examples/test.p8 +++ b/examples/test.p8 @@ -3,31 +3,9 @@ main { sub start() { - ubyte @zp xx - for xx in 0 to 10 { - txt.print_ub(xx) - txt.spc() - } - txt.nl() - - for cx16.r0L in 0 to 10 { - txt.print_ub(cx16.r0L) - txt.spc() - } - txt.nl() - - for main.derp.xx in 0 to 10 { - txt.print_ub(main.derp.xx) - txt.spc() - } - - derp() - txt.nl() - } - - sub derp() { - ubyte xx + ubyte @shared xx = @(cx16.r5) xx++ + } }