Now a library and a binary.
This commit is contained in:
parent
b7557465ef
commit
cf8d03cece
@ -3,7 +3,15 @@ name = "names"
|
||||
version = "0.1.0"
|
||||
authors = ["Fletcher Nichol <fnichol@nichol.ca>"]
|
||||
|
||||
[lib]
|
||||
name = "names"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "names"
|
||||
|
||||
[dependencies]
|
||||
# pending a release which includes https://github.com/kbknapp/clap-rs/pull/257
|
||||
clap = { git = "https://github.com/kbknapp/clap-rs", rev = "40104af" }
|
||||
rand = "0.3.0"
|
||||
|
||||
|
1126
src/adjectives.rs
Normal file
1126
src/adjectives.rs
Normal file
File diff suppressed because it is too large
Load Diff
48
src/lib.rs
Normal file
48
src/lib.rs
Normal file
@ -0,0 +1,48 @@
|
||||
extern crate rand;
|
||||
|
||||
use rand::Rng;
|
||||
|
||||
mod adjectives;
|
||||
mod nouns;
|
||||
|
||||
pub struct Dictionary<'a> {
|
||||
words: &'a [&'a str],
|
||||
}
|
||||
|
||||
impl<'a> Dictionary<'a> {
|
||||
pub fn new(words: &'a [&'a str]) -> Dictionary<'a> {
|
||||
Dictionary { words: words }
|
||||
}
|
||||
|
||||
pub fn random(&self) -> &str {
|
||||
rand::thread_rng().choose(self.words).unwrap()
|
||||
}
|
||||
}
|
||||
|
||||
pub struct Generator<'a> {
|
||||
adjectives: Dictionary<'a>,
|
||||
nouns: Dictionary<'a>,
|
||||
}
|
||||
|
||||
impl<'a> Generator<'a> {
|
||||
pub fn new(adjectives: Dictionary<'a>, nouns: Dictionary<'a>) -> Generator<'a> {
|
||||
Generator { adjectives: adjectives, nouns: nouns }
|
||||
}
|
||||
|
||||
pub fn default() -> Generator<'a> {
|
||||
Generator::new(
|
||||
Dictionary::new(adjectives::LIST),
|
||||
Dictionary::new(nouns::LIST))
|
||||
}
|
||||
|
||||
pub fn name(&self) -> String {
|
||||
format!("{}-{}", self.adjectives.random(), self.nouns.random())
|
||||
}
|
||||
|
||||
pub fn name_with_number(&self) -> String {
|
||||
format!("{}-{}-{:04}",
|
||||
self.adjectives.random(),
|
||||
self.nouns.random(),
|
||||
rand::thread_rng().gen_range(1, 10000))
|
||||
}
|
||||
}
|
2146
src/main.rs
2146
src/main.rs
File diff suppressed because it is too large
Load Diff
983
src/nouns.rs
Normal file
983
src/nouns.rs
Normal file
@ -0,0 +1,983 @@
|
||||
pub const LIST: &'static [&'static str] = &[
|
||||
"able",
|
||||
"account",
|
||||
"achieve",
|
||||
"achiever",
|
||||
"acoustics",
|
||||
"act",
|
||||
"action",
|
||||
"activity",
|
||||
"actor",
|
||||
"addition",
|
||||
"adjustment",
|
||||
"advertisement",
|
||||
"advice",
|
||||
"aftermath",
|
||||
"afternoon",
|
||||
"afterthought",
|
||||
"agreement",
|
||||
"air",
|
||||
"airplane",
|
||||
"airport",
|
||||
"alarm",
|
||||
"alley",
|
||||
"amount",
|
||||
"amusement",
|
||||
"anger",
|
||||
"angle",
|
||||
"animal",
|
||||
"answer",
|
||||
"ant",
|
||||
"ants",
|
||||
"apparatus",
|
||||
"apparel",
|
||||
"apple",
|
||||
"apples",
|
||||
"appliance",
|
||||
"approval",
|
||||
"arch",
|
||||
"argument",
|
||||
"arithmetic",
|
||||
"arm",
|
||||
"army",
|
||||
"art",
|
||||
"attack",
|
||||
"attempt",
|
||||
"attention",
|
||||
"attraction",
|
||||
"aunt",
|
||||
"authority",
|
||||
"babies",
|
||||
"baby",
|
||||
"back",
|
||||
"badge",
|
||||
"bag",
|
||||
"bait",
|
||||
"balance",
|
||||
"ball",
|
||||
"balloon",
|
||||
"balls",
|
||||
"banana",
|
||||
"band",
|
||||
"base",
|
||||
"baseball",
|
||||
"basin",
|
||||
"basket",
|
||||
"basketball",
|
||||
"bat",
|
||||
"bath",
|
||||
"battle",
|
||||
"bead",
|
||||
"beam",
|
||||
"bean",
|
||||
"bear",
|
||||
"bears",
|
||||
"beast",
|
||||
"bed",
|
||||
"bedroom",
|
||||
"beds",
|
||||
"bee",
|
||||
"beef",
|
||||
"beetle",
|
||||
"beggar",
|
||||
"beginner",
|
||||
"behavior",
|
||||
"belief",
|
||||
"believe",
|
||||
"bell",
|
||||
"bells",
|
||||
"berry",
|
||||
"bike",
|
||||
"bikes",
|
||||
"bird",
|
||||
"birds",
|
||||
"birth",
|
||||
"birthday",
|
||||
"bit",
|
||||
"bite",
|
||||
"blade",
|
||||
"blood",
|
||||
"blow",
|
||||
"board",
|
||||
"boat",
|
||||
"boats",
|
||||
"body",
|
||||
"bomb",
|
||||
"bone",
|
||||
"book",
|
||||
"books",
|
||||
"boot",
|
||||
"border",
|
||||
"bottle",
|
||||
"boundary",
|
||||
"box",
|
||||
"boy",
|
||||
"boys",
|
||||
"brain",
|
||||
"brake",
|
||||
"branch",
|
||||
"brass",
|
||||
"bread",
|
||||
"breakfast",
|
||||
"breath",
|
||||
"brick",
|
||||
"bridge",
|
||||
"brother",
|
||||
"brothers",
|
||||
"brush",
|
||||
"bubble",
|
||||
"bucket",
|
||||
"building",
|
||||
"bulb",
|
||||
"bun",
|
||||
"burn",
|
||||
"burst",
|
||||
"bushes",
|
||||
"business",
|
||||
"butter",
|
||||
"button",
|
||||
"cabbage",
|
||||
"cable",
|
||||
"cactus",
|
||||
"cake",
|
||||
"cakes",
|
||||
"calculator",
|
||||
"calendar",
|
||||
"camera",
|
||||
"camp",
|
||||
"can",
|
||||
"cannon",
|
||||
"canvas",
|
||||
"cap",
|
||||
"caption",
|
||||
"car",
|
||||
"card",
|
||||
"care",
|
||||
"carpenter",
|
||||
"carriage",
|
||||
"cars",
|
||||
"cart",
|
||||
"cast",
|
||||
"cat",
|
||||
"cats",
|
||||
"cattle",
|
||||
"cause",
|
||||
"cave",
|
||||
"celery",
|
||||
"cellar",
|
||||
"cemetery",
|
||||
"cent",
|
||||
"chain",
|
||||
"chair",
|
||||
"chairs",
|
||||
"chalk",
|
||||
"chance",
|
||||
"change",
|
||||
"channel",
|
||||
"cheese",
|
||||
"cherries",
|
||||
"cherry",
|
||||
"chess",
|
||||
"chicken",
|
||||
"chickens",
|
||||
"children",
|
||||
"chin",
|
||||
"church",
|
||||
"circle",
|
||||
"clam",
|
||||
"class",
|
||||
"clock",
|
||||
"clocks",
|
||||
"cloth",
|
||||
"cloud",
|
||||
"clouds",
|
||||
"clover",
|
||||
"club",
|
||||
"coach",
|
||||
"coal",
|
||||
"coast",
|
||||
"coat",
|
||||
"cobweb",
|
||||
"coil",
|
||||
"collar",
|
||||
"color",
|
||||
"comb",
|
||||
"comfort",
|
||||
"committee",
|
||||
"company",
|
||||
"comparison",
|
||||
"competition",
|
||||
"condition",
|
||||
"connection",
|
||||
"control",
|
||||
"cook",
|
||||
"copper",
|
||||
"copy",
|
||||
"cord",
|
||||
"cork",
|
||||
"corn",
|
||||
"cough",
|
||||
"country",
|
||||
"cover",
|
||||
"cow",
|
||||
"cows",
|
||||
"crack",
|
||||
"cracker",
|
||||
"crate",
|
||||
"crayon",
|
||||
"cream",
|
||||
"creator",
|
||||
"creature",
|
||||
"credit",
|
||||
"crib",
|
||||
"crime",
|
||||
"crook",
|
||||
"crow",
|
||||
"crowd",
|
||||
"crown",
|
||||
"crush",
|
||||
"cry",
|
||||
"cub",
|
||||
"cup",
|
||||
"current",
|
||||
"curtain",
|
||||
"curve",
|
||||
"cushion",
|
||||
"dad",
|
||||
"daughter",
|
||||
"day",
|
||||
"death",
|
||||
"debt",
|
||||
"decision",
|
||||
"deer",
|
||||
"degree",
|
||||
"design",
|
||||
"desire",
|
||||
"desk",
|
||||
"destruction",
|
||||
"detail",
|
||||
"development",
|
||||
"digestion",
|
||||
"dime",
|
||||
"dinner",
|
||||
"dinosaurs",
|
||||
"direction",
|
||||
"dirt",
|
||||
"discovery",
|
||||
"discussion",
|
||||
"disease",
|
||||
"disgust",
|
||||
"distance",
|
||||
"distribution",
|
||||
"division",
|
||||
"dock",
|
||||
"doctor",
|
||||
"dog",
|
||||
"dogs",
|
||||
"doll",
|
||||
"dolls",
|
||||
"donkey",
|
||||
"door",
|
||||
"downtown",
|
||||
"drain",
|
||||
"drawer",
|
||||
"dress",
|
||||
"drink",
|
||||
"driving",
|
||||
"drop",
|
||||
"drug",
|
||||
"drum",
|
||||
"duck",
|
||||
"ducks",
|
||||
"dust",
|
||||
"ear",
|
||||
"earth",
|
||||
"earthquake",
|
||||
"edge",
|
||||
"education",
|
||||
"effect",
|
||||
"egg",
|
||||
"eggnog",
|
||||
"eggs",
|
||||
"elbow",
|
||||
"end",
|
||||
"engine",
|
||||
"error",
|
||||
"event",
|
||||
"example",
|
||||
"exchange",
|
||||
"existence",
|
||||
"expansion",
|
||||
"experience",
|
||||
"expert",
|
||||
"eye",
|
||||
"eyes",
|
||||
"face",
|
||||
"fact",
|
||||
"fairies",
|
||||
"fall",
|
||||
"family",
|
||||
"fan",
|
||||
"fang",
|
||||
"farm",
|
||||
"farmer",
|
||||
"father",
|
||||
"faucet",
|
||||
"fear",
|
||||
"feast",
|
||||
"feather",
|
||||
"feeling",
|
||||
"feet",
|
||||
"fiction",
|
||||
"field",
|
||||
"fifth",
|
||||
"fight",
|
||||
"finger",
|
||||
"fire",
|
||||
"fireman",
|
||||
"fish",
|
||||
"flag",
|
||||
"flame",
|
||||
"flavor",
|
||||
"flesh",
|
||||
"flight",
|
||||
"flock",
|
||||
"floor",
|
||||
"flower",
|
||||
"flowers",
|
||||
"fly",
|
||||
"fog",
|
||||
"fold",
|
||||
"food",
|
||||
"foot",
|
||||
"force",
|
||||
"fork",
|
||||
"form",
|
||||
"fowl",
|
||||
"frame",
|
||||
"friction",
|
||||
"friend",
|
||||
"friends",
|
||||
"frog",
|
||||
"frogs",
|
||||
"front",
|
||||
"fruit",
|
||||
"fuel",
|
||||
"furniture",
|
||||
"galley",
|
||||
"game",
|
||||
"garden",
|
||||
"gate",
|
||||
"geese",
|
||||
"ghost",
|
||||
"giants",
|
||||
"giraffe",
|
||||
"girl",
|
||||
"girls",
|
||||
"glass",
|
||||
"glove",
|
||||
"glue",
|
||||
"goat",
|
||||
"gold",
|
||||
"goldfish",
|
||||
"good-bye",
|
||||
"goose",
|
||||
"government",
|
||||
"governor",
|
||||
"grade",
|
||||
"grain",
|
||||
"grandfather",
|
||||
"grandmother",
|
||||
"grape",
|
||||
"grass",
|
||||
"grip",
|
||||
"ground",
|
||||
"group",
|
||||
"growth",
|
||||
"guide",
|
||||
"guitar",
|
||||
"gun",
|
||||
"hair",
|
||||
"haircut",
|
||||
"hall",
|
||||
"hammer",
|
||||
"hand",
|
||||
"hands",
|
||||
"harbor",
|
||||
"harmony",
|
||||
"hat",
|
||||
"hate",
|
||||
"head",
|
||||
"health",
|
||||
"hearing",
|
||||
"heart",
|
||||
"heat",
|
||||
"help",
|
||||
"hen",
|
||||
"hill",
|
||||
"history",
|
||||
"hobbies",
|
||||
"hole",
|
||||
"holiday",
|
||||
"home",
|
||||
"honey",
|
||||
"hook",
|
||||
"hope",
|
||||
"horn",
|
||||
"horse",
|
||||
"horses",
|
||||
"hose",
|
||||
"hospital",
|
||||
"hot",
|
||||
"hour",
|
||||
"house",
|
||||
"houses",
|
||||
"humor",
|
||||
"hydrant",
|
||||
"ice",
|
||||
"icicle",
|
||||
"idea",
|
||||
"impulse",
|
||||
"income",
|
||||
"increase",
|
||||
"industry",
|
||||
"ink",
|
||||
"insect",
|
||||
"instrument",
|
||||
"insurance",
|
||||
"interest",
|
||||
"invention",
|
||||
"iron",
|
||||
"island",
|
||||
"jail",
|
||||
"jam",
|
||||
"jar",
|
||||
"jeans",
|
||||
"jelly",
|
||||
"jellyfish",
|
||||
"jewel",
|
||||
"join",
|
||||
"joke",
|
||||
"journey",
|
||||
"judge",
|
||||
"juice",
|
||||
"jump",
|
||||
"kettle",
|
||||
"key",
|
||||
"kick",
|
||||
"kiss",
|
||||
"kite",
|
||||
"kitten",
|
||||
"kittens",
|
||||
"kitty",
|
||||
"knee",
|
||||
"knife",
|
||||
"knot",
|
||||
"knowledge",
|
||||
"laborer",
|
||||
"lace",
|
||||
"ladybug",
|
||||
"lake",
|
||||
"lamp",
|
||||
"land",
|
||||
"language",
|
||||
"laugh",
|
||||
"lawyer",
|
||||
"lead",
|
||||
"leaf",
|
||||
"learning",
|
||||
"leather",
|
||||
"leg",
|
||||
"legs",
|
||||
"letter",
|
||||
"letters",
|
||||
"lettuce",
|
||||
"level",
|
||||
"library",
|
||||
"lift",
|
||||
"light",
|
||||
"limit",
|
||||
"line",
|
||||
"linen",
|
||||
"lip",
|
||||
"liquid",
|
||||
"list",
|
||||
"lizards",
|
||||
"loaf",
|
||||
"lock",
|
||||
"locket",
|
||||
"look",
|
||||
"loss",
|
||||
"love",
|
||||
"low",
|
||||
"lumber",
|
||||
"lunch",
|
||||
"lunchroom",
|
||||
"machine",
|
||||
"magic",
|
||||
"maid",
|
||||
"mailbox",
|
||||
"man",
|
||||
"manager",
|
||||
"map",
|
||||
"marble",
|
||||
"mark",
|
||||
"market",
|
||||
"mask",
|
||||
"mass",
|
||||
"match",
|
||||
"meal",
|
||||
"measure",
|
||||
"meat",
|
||||
"meeting",
|
||||
"memory",
|
||||
"men",
|
||||
"metal",
|
||||
"mice",
|
||||
"middle",
|
||||
"milk",
|
||||
"mind",
|
||||
"mine",
|
||||
"minister",
|
||||
"mint",
|
||||
"minute",
|
||||
"mist",
|
||||
"mitten",
|
||||
"mom",
|
||||
"money",
|
||||
"monkey",
|
||||
"month",
|
||||
"moon",
|
||||
"morning",
|
||||
"mother",
|
||||
"motion",
|
||||
"mountain",
|
||||
"mouth",
|
||||
"move",
|
||||
"muscle",
|
||||
"music",
|
||||
"nail",
|
||||
"name",
|
||||
"nation",
|
||||
"neck",
|
||||
"need",
|
||||
"needle",
|
||||
"nerve",
|
||||
"nest",
|
||||
"net",
|
||||
"news",
|
||||
"night",
|
||||
"noise",
|
||||
"north",
|
||||
"nose",
|
||||
"note",
|
||||
"notebook",
|
||||
"number",
|
||||
"nut",
|
||||
"oatmeal",
|
||||
"observation",
|
||||
"ocean",
|
||||
"offer",
|
||||
"office",
|
||||
"oil",
|
||||
"operation",
|
||||
"opinion",
|
||||
"orange",
|
||||
"oranges",
|
||||
"order",
|
||||
"organization",
|
||||
"ornament",
|
||||
"oven",
|
||||
"owl",
|
||||
"owner",
|
||||
"page",
|
||||
"pail",
|
||||
"pain",
|
||||
"paint",
|
||||
"pan",
|
||||
"pancake",
|
||||
"paper",
|
||||
"parcel",
|
||||
"parent",
|
||||
"park",
|
||||
"part",
|
||||
"partner",
|
||||
"party",
|
||||
"passenger",
|
||||
"paste",
|
||||
"patch",
|
||||
"payment",
|
||||
"peace",
|
||||
"pear",
|
||||
"pen",
|
||||
"pencil",
|
||||
"person",
|
||||
"pest",
|
||||
"pet",
|
||||
"pets",
|
||||
"pickle",
|
||||
"picture",
|
||||
"pie",
|
||||
"pies",
|
||||
"pig",
|
||||
"pigs",
|
||||
"pin",
|
||||
"pipe",
|
||||
"pizzas",
|
||||
"place",
|
||||
"plane",
|
||||
"planes",
|
||||
"plant",
|
||||
"plantation",
|
||||
"plants",
|
||||
"plastic",
|
||||
"plate",
|
||||
"play",
|
||||
"playground",
|
||||
"pleasure",
|
||||
"plot",
|
||||
"plough",
|
||||
"pocket",
|
||||
"point",
|
||||
"poison",
|
||||
"police",
|
||||
"polish",
|
||||
"pollution",
|
||||
"popcorn",
|
||||
"porter",
|
||||
"position",
|
||||
"pot",
|
||||
"potato",
|
||||
"powder",
|
||||
"power",
|
||||
"price",
|
||||
"print",
|
||||
"prison",
|
||||
"process",
|
||||
"produce",
|
||||
"profit",
|
||||
"property",
|
||||
"prose",
|
||||
"protest",
|
||||
"pull",
|
||||
"pump",
|
||||
"punishment",
|
||||
"purpose",
|
||||
"push",
|
||||
"quarter",
|
||||
"quartz",
|
||||
"queen",
|
||||
"question",
|
||||
"quicksand",
|
||||
"quiet",
|
||||
"quill",
|
||||
"quilt",
|
||||
"quince",
|
||||
"quiver",
|
||||
"rabbit",
|
||||
"rabbits",
|
||||
"rail",
|
||||
"railway",
|
||||
"rain",
|
||||
"rainstorm",
|
||||
"rake",
|
||||
"range",
|
||||
"rat",
|
||||
"rate",
|
||||
"ray",
|
||||
"reaction",
|
||||
"reading",
|
||||
"reason",
|
||||
"receipt",
|
||||
"recess",
|
||||
"record",
|
||||
"regret",
|
||||
"relation",
|
||||
"religion",
|
||||
"representative",
|
||||
"request",
|
||||
"respect",
|
||||
"rest",
|
||||
"reward",
|
||||
"rhythm",
|
||||
"rice",
|
||||
"riddle",
|
||||
"rifle",
|
||||
"ring",
|
||||
"rings",
|
||||
"river",
|
||||
"road",
|
||||
"robin",
|
||||
"rock",
|
||||
"rod",
|
||||
"roll",
|
||||
"roof",
|
||||
"room",
|
||||
"root",
|
||||
"rose",
|
||||
"route",
|
||||
"rub",
|
||||
"rule",
|
||||
"run",
|
||||
"sack",
|
||||
"sail",
|
||||
"salt",
|
||||
"sand",
|
||||
"scale",
|
||||
"scarecrow",
|
||||
"scarf",
|
||||
"scene",
|
||||
"scent",
|
||||
"school",
|
||||
"science",
|
||||
"scissors",
|
||||
"screw",
|
||||
"sea",
|
||||
"seashore",
|
||||
"seat",
|
||||
"secretary",
|
||||
"seed",
|
||||
"selection",
|
||||
"self",
|
||||
"sense",
|
||||
"servant",
|
||||
"shade",
|
||||
"shake",
|
||||
"shame",
|
||||
"shape",
|
||||
"sheep",
|
||||
"sheet",
|
||||
"shelf",
|
||||
"ship",
|
||||
"shirt",
|
||||
"shock",
|
||||
"shoe",
|
||||
"shoes",
|
||||
"shop",
|
||||
"show",
|
||||
"side",
|
||||
"sidewalk",
|
||||
"sign",
|
||||
"silk",
|
||||
"silver",
|
||||
"sink",
|
||||
"sister",
|
||||
"sisters",
|
||||
"size",
|
||||
"skate",
|
||||
"skin",
|
||||
"skirt",
|
||||
"sky",
|
||||
"slave",
|
||||
"sleep",
|
||||
"sleet",
|
||||
"slip",
|
||||
"slope",
|
||||
"smash",
|
||||
"smell",
|
||||
"smile",
|
||||
"smoke",
|
||||
"snail",
|
||||
"snails",
|
||||
"snake",
|
||||
"snakes",
|
||||
"sneeze",
|
||||
"snow",
|
||||
"soap",
|
||||
"society",
|
||||
"sock",
|
||||
"soda",
|
||||
"sofa",
|
||||
"son",
|
||||
"song",
|
||||
"songs",
|
||||
"sort",
|
||||
"sound",
|
||||
"soup",
|
||||
"space",
|
||||
"spade",
|
||||
"spark",
|
||||
"spiders",
|
||||
"sponge",
|
||||
"spoon",
|
||||
"spot",
|
||||
"spring",
|
||||
"spy",
|
||||
"square",
|
||||
"squirrel",
|
||||
"stage",
|
||||
"stamp",
|
||||
"star",
|
||||
"start",
|
||||
"statement",
|
||||
"station",
|
||||
"steam",
|
||||
"steel",
|
||||
"stem",
|
||||
"step",
|
||||
"stew",
|
||||
"stick",
|
||||
"sticks",
|
||||
"stitch",
|
||||
"stocking",
|
||||
"stomach",
|
||||
"stone",
|
||||
"stop",
|
||||
"store",
|
||||
"story",
|
||||
"stove",
|
||||
"stranger",
|
||||
"straw",
|
||||
"stream",
|
||||
"street",
|
||||
"stretch",
|
||||
"string",
|
||||
"structure",
|
||||
"substance",
|
||||
"sugar",
|
||||
"suggestion",
|
||||
"suit",
|
||||
"summer",
|
||||
"sun",
|
||||
"support",
|
||||
"surprise",
|
||||
"sweater",
|
||||
"swim",
|
||||
"swing",
|
||||
"system",
|
||||
"table",
|
||||
"tail",
|
||||
"talk",
|
||||
"tank",
|
||||
"taste",
|
||||
"tax",
|
||||
"teaching",
|
||||
"team",
|
||||
"teeth",
|
||||
"temper",
|
||||
"tendency",
|
||||
"tent",
|
||||
"territory",
|
||||
"test",
|
||||
"texture",
|
||||
"theory",
|
||||
"thing",
|
||||
"things",
|
||||
"thought",
|
||||
"thread",
|
||||
"thrill",
|
||||
"throat",
|
||||
"throne",
|
||||
"thumb",
|
||||
"thunder",
|
||||
"ticket",
|
||||
"tiger",
|
||||
"time",
|
||||
"tin",
|
||||
"title",
|
||||
"toad",
|
||||
"toe",
|
||||
"toes",
|
||||
"tomatoes",
|
||||
"tongue",
|
||||
"tooth",
|
||||
"toothbrush",
|
||||
"toothpaste",
|
||||
"top",
|
||||
"touch",
|
||||
"town",
|
||||
"toy",
|
||||
"toys",
|
||||
"trade",
|
||||
"trail",
|
||||
"train",
|
||||
"trains",
|
||||
"tramp",
|
||||
"transport",
|
||||
"tray",
|
||||
"treatment",
|
||||
"tree",
|
||||
"trees",
|
||||
"trick",
|
||||
"trip",
|
||||
"trouble",
|
||||
"trousers",
|
||||
"truck",
|
||||
"trucks",
|
||||
"tub",
|
||||
"turkey",
|
||||
"turn",
|
||||
"twig",
|
||||
"twist",
|
||||
"umbrella",
|
||||
"uncle",
|
||||
"underwear",
|
||||
"unit",
|
||||
"use",
|
||||
"vacation",
|
||||
"value",
|
||||
"van",
|
||||
"vase",
|
||||
"vegetable",
|
||||
"veil",
|
||||
"vein",
|
||||
"verse",
|
||||
"vessel",
|
||||
"vest",
|
||||
"view",
|
||||
"visitor",
|
||||
"voice",
|
||||
"volcano",
|
||||
"volleyball",
|
||||
"voyage",
|
||||
"walk",
|
||||
"wall",
|
||||
"war",
|
||||
"wash",
|
||||
"waste",
|
||||
"watch",
|
||||
"water",
|
||||
"wave",
|
||||
"waves",
|
||||
"wax",
|
||||
"way",
|
||||
"wealth",
|
||||
"weather",
|
||||
"week",
|
||||
"weight",
|
||||
"wheel",
|
||||
"whip",
|
||||
"whistle",
|
||||
"wilderness",
|
||||
"wind",
|
||||
"window",
|
||||
"wine",
|
||||
"wing",
|
||||
"winter",
|
||||
"wire",
|
||||
"wish",
|
||||
"woman",
|
||||
"women",
|
||||
"wood",
|
||||
"wool",
|
||||
"word",
|
||||
"work",
|
||||
"worm",
|
||||
"wound",
|
||||
"wren",
|
||||
"wrench",
|
||||
"wrist",
|
||||
"writer",
|
||||
"writing",
|
||||
"yak",
|
||||
"yam",
|
||||
"yard",
|
||||
"yarn",
|
||||
"year",
|
||||
"yoke",
|
||||
"zebra",
|
||||
"zephyr",
|
||||
"zinc",
|
||||
"zipper",
|
||||
"zoo",
|
||||
];
|
Loading…
Reference in New Issue
Block a user