Attributes
Sign in to test your solution.
// Attributes program
using System;
using System.Collections.Generic;
using System.IO;
class Submission
{
// -------------------------
// Subprograms
// -------------------------
static string[] make_character()
{
}
static void save_character(string[] attributes)
{
}
// -------------------------
// Main program
// -------------------------
public static void Main(string[] args)
{
string[] character = make_character();
save_character(character);
Console.WriteLine("Character saved.");
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.