𝔎𝔦𝔰𝔰_𝔐𝔶_𝔄𝔵𝔢
❔ top level statements must precede namespace and typer declerations
class wizard
{
public string name;
public string favouritespell;
public int spellslots;
public float experience;
}
wizard wizard1 = new wizard();
wizard1.name = "Parry Hopper";
wizard1.favouritespell = "spell1";
wizard1.spellslots = 2;
wizard1.experience = 0f;
8 replies