use tab escape

This commit is contained in:
SowinskiBraeden committed 2026-01-13 10:08:56 -08:00
1 parent c131690d56
commit c9d4f427a8
3 files changed
+8 -1

No files matched your search

+1
View File
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleMigrationSettings" migrationVersion="1" />
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
Generated
+6
View File
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>
@@ -19,7 +19,7 @@ fun main()
val title: String = "Food Delivery Service v$VERSION_NUM";
val welcome: String = "Welcome to Glasgow's finest food delivery service, where we provide you with swift instructions on where to deliver your food.\n";
val instruction: String = " Please deliver the food to:\n %s\n".format(fullAddress?.uppercase());
val instruction: String = "\t\tPlease deliver the food to:\n\t\t%s\n".format(fullAddress?.uppercase());
val sloganDelivery: String = "Your hard work and commitment to delivering food are always appreciated, and never forget...%s.\n".format(SLOGAN.uppercase());
val message: String = "$title\n\n$welcome\n\n$instruction\n\n$sloganDelivery\n\n...Thank you.";