diff --git a/.gitignore b/.gitignore index a725465..140fd58 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -vendor/ \ No newline at end of file +vendor/ +node_modules/ diff --git a/src/Echoe.php b/src/Echoe.php index 1c8c0c1..01e880d 100644 --- a/src/Echoe.php +++ b/src/Echoe.php @@ -6,6 +6,7 @@ class Echoe { public static function call(): void { - echo "Echo Called"; + echo "Echo Called\n"; + echo "Echo Called again\n"; } -} \ No newline at end of file +}