From 54ecec3442b19c64b7724761a85be4ef13f45d5f Mon Sep 17 00:00:00 2001 From: kbinreallife <141305609+kbinreallife@users.noreply.github.com> Date: Fri, 18 Jul 2025 23:57:13 +0000 Subject: [PATCH 1/2] let bread --- bread.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 bread.js diff --git a/bread.js b/bread.js new file mode 100644 index 0000000..77ff670 --- /dev/null +++ b/bread.js @@ -0,0 +1,14 @@ +function bread() { + + let bread = [ + "", + "`I ______ `", + "`I ( . . ) W `", + "`I | u |_/| `", + "`I |____| | `" + ]; + + return bread.join("\n"); +} + +console.log(bread) \ No newline at end of file From 1b556bc6b4419d4ed06d4a73a8d1ad733a65f731 Mon Sep 17 00:00:00 2001 From: kbinreallife <141305609+kbinreallife@users.noreply.github.com> Date: Fri, 18 Jul 2025 23:59:45 +0000 Subject: [PATCH 2/2] missed parens --- bread.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bread.js b/bread.js index 77ff670..2a9c75d 100644 --- a/bread.js +++ b/bread.js @@ -11,4 +11,4 @@ function bread() { return bread.join("\n"); } -console.log(bread) \ No newline at end of file +console.log(bread()) \ No newline at end of file