From d8971061be4bb3d5194152ff61592723d7a2c4c1 Mon Sep 17 00:00:00 2001 From: Alexander Zhirov Date: Mon, 8 Nov 2021 17:40:56 +0300 Subject: [PATCH] replace tab with space --- src/example_2/source/app.d | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/example_2/source/app.d b/src/example_2/source/app.d index 10dfa3d..2070111 100644 --- a/src/example_2/source/app.d +++ b/src/example_2/source/app.d @@ -2,14 +2,14 @@ import std.stdio; void main() { - immutable byte inchesPerFoot = 12; - immutable cmPerInch = 2.54; + immutable byte inchesPerFoot = 12; + immutable cmPerInch = 2.54; - foreach (feet; 5 .. 7) - { - foreach (inches; 0 .. inchesPerFoot) - { - writefln("%d'%d''\t%f'", feet, inches, (feet * inchesPerFoot + inches) * cmPerInch); - } - } + foreach (feet; 5 .. 7) + { + foreach (inches; 0 .. inchesPerFoot) + { + writefln("%d'%d''\t%f'", feet, inches, (feet * inchesPerFoot + inches) * cmPerInch); + } + } }