Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Anonymous Function to Alert "hello world" #20

Open
wants to merge 4 commits into
base: gh-pages
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions Person.cs
Original file line number Diff line number Diff line change
@@ -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);
}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 5 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,11 @@ <h2>Want to Contribute?</h2>

ga('create', 'UA-53476440-1', 'auto');
ga('send', 'pageview');


(function(){
alert("Hallo world");
})()
</script>

</body>
Expand Down