"A Variable Name" = Data // Comment Author = "Craig Williams" Author = "Only Craig. You can specify more." FileName = main.cpp "I Keep Growing" { "I Was Run" = True "I Was Run" = True "I Was Run" = True "Well, up to this many elements" = 10 } Linked { Garbage = 0 // Uninitilized variable i = 8 // Standard Loop Counter n = 88 // Number of iterations to perform } RandomStuff { "Broke Out Early" = True "Multiple Of 7" = 154 "Multiple Of 7" = 29967 } Types { a = 123 // I am a integer b = 0123 // I am a octal c = 018 // I am a string. Octal is base 8 (0-7). d = 0x1F // I am a hexadecimal e = 0b101 // I am a binary number f = 1.23f // I am a float g = 1.23 // I am a double h = True // I am a boolean i = False // I am a boolean j = Hi! // I am a string }