ldpl 0.1.0

LDPL 4.4 compiler in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <iostream>
#include <string>

std::string MY_NAME;

void HELLO()
{
    std::cout << "Heyo, worldy!" << std::endl;
}

void GREET()
{
    std::cout << "Salutations, " << MY_NAME << "!" << std::endl;
}