Zebra Script Bug - Multiple Function Definitions

Official support for: u-he.com
Post Reply New Topic
RELATED
PRODUCTS

Post

Here is the Zebra script bug that bugs me the most. These scripts don't do anything useful, they are simply illustrating the bug. Note that placing semi-colons after the closing function brackets does not fix it.

Compiles okay:

#defaults=no
<?

float func1(float x)
{
return x;
}

?>

Also compiles okay:

#defaults=no
<?

float func2(float y)
{
return y;
}

?>

Does not compile: (Error Code -70)

#defaults=no
<?

float func1(float x)
{
return x;
}

float func2(float y)
{
return y;
}

?>

Post Reply

Return to “u-he”