//Compact
list<int> dummy1 (int a <- 100, float b) {
return [a, int(b)];
}
// The classic way
do action: dummy1 with: [a::10, b::100];
// Another classic way using facets
do action: dummy1 a: 10 b: 100;
// Another by removing the first facet
do dummy1 a: 10 b: 100;
// The new alternative one
do dummy1(a: 10, b: 100);
--
You received this message because you are subscribed to the Google Groups "GAMA" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gama-platfor...@googlegroups.com.
To post to this group, send email to gama-p...@googlegroups.com.
Visit this group at http://groups.google.com/group/gama-platform.
For more options, visit https://groups.google.com/d/optout.