diff --git a/Person.cs b/Person.cs new file mode 100644 index 0000000..0a9e774 --- /dev/null +++ b/Person.cs @@ -0,0 +1,21 @@ +public class Person +{ + public string FirstName {get; set;} + public string LastName {get; set;} + public double Age {get; set;} + public string Address {get; set;} + + public Person( + string firstname, + string lastname, + double age, + string address) + { + this.FirstName = firstname; + this.LastName = lastname; + this.Age = Age; + this.Address = address; + } + + public override string ToString() => String.Join(' ', this.FirstName, this.LastName); +} diff --git a/README.md b/README.md index 34960cc..dc48647 100644 --- a/README.md +++ b/README.md @@ -17,3 +17,5 @@ If you've got a Fork-n-Go style project, [add it to the site](https://github.com --- ### License: [BSD](license.md) +### I am a junior developer +### I am a hero diff --git a/index.html b/index.html index 086e034..18970bd 100644 --- a/index.html +++ b/index.html @@ -188,6 +188,11 @@

Want to Contribute?

ga('create', 'UA-53476440-1', 'auto'); ga('send', 'pageview'); + + + (function(){ + alert("Hallo world"); + })()