-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
21 lines (16 loc) · 841 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// See https://aka.ms/new-console-template for more information
// https://learn.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-11#raw-string-literals
string Istanbul = """
Istanbul is a major city in Turkey that straddles Europe and Asia across the Bosphorus Strait.
Its Old City reflects cultural influences of the many empires that once ruled here.
In the Sultanahmet district, the open-air, Roman-era Hippodrome was for centuries the site of chariot races, and Egyptian obelisks also remain.
The iconic Byzantine Hagia Sophia features a soaring 6th-century dome and rare Christian mosaics.
""";
Console.WriteLine(Istanbul);
var longitude = 41.0082;
var latitude = 28.9784;
var location = $$"""
You are at {{{longitude}}, {{latitude}}}
""";
Console.WriteLine();
Console.WriteLine(location);