PostsChallengesPortalsAuthorsBooks
Sign Up
Log In
Posts
Challenges
Portals
Authors
Books
beta
Sign Up
Search
Challenge
Bilingual
Write a poem in a language you know aside from English and then translate it back into English.
Profile avatar image for Taliesin
Taliesin in Poetry & Free Verse

The Geek I am

C#

------

namespace Language

{

class Program

{

static void Main(string[] args)

{

var paper = new TheStory();

paper.TellIt("Morgan Le Fay", "Talisien");

}

}

public class TheStory

{

private string[] MyHeart = new string[] {"light", "love", "breath" };

private string title;

public TheStory()

{

title = "Two";

}

public void TellIt(string you, string me)

{

Console.WriteLine(title);

var us = you + " and " + me;

Console.WriteLine("The tale of " + us);

Console.WriteLine("My dearest " + you);

foreach (var item in MyHeart)

{

Console.WriteLine("You are my " + item);

}

Console.WriteLine("-" + me);

}

}

}

English

----------

Two

The tale of Morgan Le Fay and Talisien

My dearest Morgan Le Fay

You are my light

You are my love

You are my breath

-Talisien

--------------

I don't know a foreign language so a programming language C# is the closest I could get :)