Skip to content

Releases: aceinetx/Watermelon

3.1.1

05 Oct 09:50
2aa8bcd
Compare
Choose a tag to compare

Update to python 3.12.6

3.1

05 Mar 17:46
b7fa7ed
Compare
Choose a tag to compare
3.1

Deleted unneccessary debugging leftovers

2.2

25 Feb 11:32
36b9ce9
Compare
Choose a tag to compare
2.2

Compiler!
Compile a file: python wpp.pyc test.wpp compile
Run a compiled file: python wpp.pyc test.wpc

2.1

10 Feb 13:03
c6b5c29
Compare
Choose a tag to compare
2.1

Small update before 3.0/2.2

Added loops (Experimental)
Example:

fn main;
  
var i = 5;

loop;
println "123";
var i - 1;
if i == 0
break
end
lend;

return 0;
nf;

Will output:

123
123
123
123
123

2.0

03 Feb 10:59
cc70843
Compare
Choose a tag to compare
2.0

see changes here