View Issue Details

IDProjectCategoryView StatusLast Update
0000016BooBooGeneralpublic2025-12-29 17:58
Reportertremblin Assigned Totremblin  
PrioritynormalSeverityminorReproducibilityhave not tried
Status resolvedResolutionfixed 
Summary0000016: make sure a fish can start an expression
DescriptionFor example you could have a list of functions in a vector. It may already work.
TagsNo tags attached.

Activities

tremblin

2025-12-29 17:58

administrator   ~0000006

It was not working but now is. As a bonus, an expression can now start an expression too. This code prints "FOO\n5\n" twice:

var v
vector_add v foo
var r
= r ([v 0])
print "r=%\n" r

= r 7
= r ((bar))
print "r=%\n" r

function foo
{
    print "FOO\n"
    return 5
}

function bar
{
    return foo
}

Issue History

Date Modified Username Field Change
2025-12-24 22:43 tremblin New Issue
2025-12-24 22:43 tremblin Status new => assigned
2025-12-24 22:43 tremblin Assigned To => tremblin
2025-12-29 17:58 tremblin Status assigned => resolved
2025-12-29 17:58 tremblin Resolution open => fixed
2025-12-29 17:58 tremblin Note Added: 0000006