Complete COUNT
Created by: Lartu
At the moment the skeleton for a COUNT statement is defined within ldpl.cpp but it's not been fully written.
if(line_like("COUNT $str-expr FROM $str-expr IN $num-var", tokens, state))
{
if(state.section_state != 2)
error("COUNT statement outside PROCEDURE section (\033[0m" + current_file + ":"+ to_string(line_num)+"\033[1;31m)");
//C Code
//TODO
return;
}
This should be completed.