= Standard Library Examples = D's standard library is also known as [http://www.digitalmars.com/d/phobos/phobos.html Phobos]. == Examples == * [BaseSixtyFourExample std.base64 example] * [CompileAllFilesIntoLibExample Compile all files into a lib] * [ElapsedTimeExample Elapsed time] * [FileInputExample File input example] * [FileListingExample File listing example] (uses std.file.listdir, std.regexp.!RegExp) * [FileModeExample FileMode example] * [FilenameTooLongExample Filename too long] (uses std.file.listdir, std.file.write, std.stream.File, std.path) * [HttpHeadExample http head example] * [LinesOfCodeExample Lines of code] (uses std.file.listdir, std.file.write, std.stream.File, std.regexp.!RegExp) * [ListDirExample listdir example] (uses std.file.listdir and std.regexp.!RegExp) * [MakeAllHtmlExample "Make all HTML" example] * [OutBufferExample OutBuffer example] * [ReclsExample recls example] * [RegistryEnumerationExample Registry Enumeration] (uses std.windows.registry) * [RegularExpressionsExample Regular Expressions] (uses std.regexp) * [ReplaceTextExample Replace Text] (uses std.stream.File, std.string.replace, std.stdio.writefln) * [SplitAndSplitLinesExample split and splitlines] * [StdInStdOutStreamsExample Standard In and Standard Out Streams] * [StdPerfExample std.perf example] * [StdStreamReadLineExample std.stream.readline] * [ThreadsExample Threads] (uses std.thread) * [ThreadsAndDelegatesExample Threads and delegates] (uses std.thread and std.c.time) * [UnzipUsingStdZipExample Unzip using std.zip] * [VariableArgumentsUsingStdStdargExample Variable arguments] (using std.stdarg) * [VariadicFunctionsExample Variadic functions] * [VariableArgumentsExample Variable arguments] * [WinRegistryApiExample Windows registry API example] * [WritefExample writef example] * [WritefLnWithFloatExample writefln with float example] * [ZipExample Zip example] (std.file, std.date, std.zip, std.zlib) * [ZlibExample std.zlib example]