I've recently gone from using WDL to Lite-C and have run into this dead end, though the manual seems to indicate that it should work:

var something;
var somewhere;

function main()
{
something = max(something,somewhere);
}

when I try to run it even in this simpled-down form it helpfully tells me that max is an "undeclared identifier".

What have I done wrong??


I HEART 3DGS