ldpl 0.1.0

LDPL 4.4 compiler in Rust
Documentation
1
2
3
4
5
6
7
8
# Loop Counter Example
# Counts from 1 to 1.000.000
data:
  n is number
procedure:
  for n from 0 to 1000000 step 1 do
    display n lf
  repeat