v2 / vlib / v / slow_tests / repl / comptime_for.repl
5 lines · 5 sloc · 112 bytes · a40df55bf5d6a074bd1f29e29715ff1482de7437
Raw
1struct Person { name string age int }
2$for field in Person.fields { println(field.name) }
3===output===
4name
5age
6