RosettaCodeData/Task/Parametric-polymorphism/C3/parametric-polymorphism-2.c3

8 lines
85 B
Text
Raw Permalink Normal View History

2023-08-01 14:30:30 -07:00
import tree;
2023-07-01 11:58:00 -04:00
fn void test()
{
2025-06-11 20:16:52 -04:00
Tree {int} inttree;
2023-08-01 14:30:30 -07:00
inttree.replace_all(3);
2023-07-01 11:58:00 -04:00
}