using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
struct Test
{
public int n;
public double d;
public bool b;
};
static void Main(string[] args)
{
Test t;
t.n = 100;
t.d = 3.14;
t.b = true;
Console.WriteLine(t.n);
Console.WriteLine(t.d);
Console.WriteLine(t.b);
}
}
}
/*
run:
100
3.14
True
*/