palate 0.3.9

File type detection combining tft and hyperpolyglot
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
start1 ; entry label
 set ax=1
 set bx=20
 set cx=2
 set ay=1
 set by=20
 set cy=2
 set sumx=0
 set sqrx=0
 set sumxy=0
 for x=ax:cx:bx do
 . set sumx=sumx+x
 . set sqrx=sqrx+(x*x)
 . for y=ay:cy:by do
 .. set sumxy=sumxy+(x*y)
 .. if (sumxy<100) do
 ... write sumxy,!