module pind.samples.ja.uda.uda_1; struct Encrypted { } enum Color { black, blue, red } struct Colored { Color color; } void main() { @Encrypted int a; // ← 型名 @Encrypted() int b; // ← オブジェクト @Colored(Color.blue) int c; // ← オブジェクト @(42) int d; // ← リテラル(使用は推奨されない) }