DigiFlow is used for image processing for fluid dynamics experiments – DigiFlow website. There is a console within the program which is used for writing macros.
Some example code:
function do_this(variable) {variable += 2};
output := do_this(5);
(output = 7 after running this.)
From assignment and function declaration I’d say it looks like Google’s go language. Pascal might be another choice.