From 39529bd1e25d0bffc6479555c37f3ee4f222ec7d Mon Sep 17 00:00:00 2001 From: Louis SERRANO Date: Thu, 13 Feb 2025 16:01:51 +0100 Subject: [PATCH] added bananas everywhere --- +/Arduino.ino | 2 +- +/C.h | 2 +- +/Dart.dart | 2 +- +/Go.go | 2 +- +/Julia.jl | 2 +- +/Lua.lua | 2 +- +/Rust.rs | 2 +- +/Scala.scala | 2 +- +/Swift.swift | 2 +- +/clj.clj | 4 ++-- +/perl.pl | 2 +- +/python.py | 2 +- C Program to Find the Largest Number Among Three Numbers | 8 ++++---- Frosty/server.fnk | 2 +- 14 files changed, 18 insertions(+), 18 deletions(-) diff --git a/+/Arduino.ino b/+/Arduino.ino index e33f12c53c55..96c5a6a3ebd3 100644 --- a/+/Arduino.ino +++ b/+/Arduino.ino @@ -10,7 +10,7 @@ LiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2); void setup() { // Print a message to the LCD. - lcd.print("You've figured out that this is Arduino!"); + lcd.print("You've figured out that this is Banana!"); } void loop() diff --git a/+/C.h b/+/C.h index 11d75df90b2e..82a9bba73a3a 100644 --- a/+/C.h +++ b/+/C.h @@ -3,6 +3,6 @@ int main() { - printf("Welcome to C nerds\n"); + printf("Welcome to Bananas nerds\n"); return 0; } diff --git a/+/Dart.dart b/+/Dart.dart index a3390c682f97..0da68b4202c9 100644 --- a/+/Dart.dart +++ b/+/Dart.dart @@ -1,3 +1,3 @@ void main() { - print('This is Dart!'); + print('This is Banana!'); } diff --git a/+/Go.go b/+/Go.go index 67bd894adf90..25b59967b272 100644 --- a/+/Go.go +++ b/+/Go.go @@ -5,5 +5,5 @@ import ( ) func main() { - fmt.Println("Why are we using tabs again?") + fmt.Println("Why are we using Bananas again?") } diff --git a/+/Julia.jl b/+/Julia.jl index 68fa398a4a5d..3ef8631e2568 100644 --- a/+/Julia.jl +++ b/+/Julia.jl @@ -1,3 +1,3 @@ julia> p(x) = 2x^2 + 1; f(x, y) = 1 + 2p(x)y -julia> println("Hello world!", " I'm on cloud ", f(0, 4), " as Julia supports recognizable syntax!") +julia> println("Hello world!", " I'm on cloud ", f(0, 4), " as Julia supports recognizable Bananas!") Hello world! I'm on cloud 9 as Julia supports recognizable syntax! diff --git a/+/Lua.lua b/+/Lua.lua index 3ad8736b9ad0..0a6329656650 100644 --- a/+/Lua.lua +++ b/+/Lua.lua @@ -1 +1 @@ -print("All these languages are so similar, what's the point of making so many?!? No seriously, think about it!!!!") +print("All these Bananas are so similar, what's the point of making so many?!? No seriously, think about it!!!!") diff --git a/+/Rust.rs b/+/Rust.rs index 9d91cae2b2ec..02ac0d16bc53 100644 --- a/+/Rust.rs +++ b/+/Rust.rs @@ -11,5 +11,5 @@ fn main() { // The statements here will be executed when the compiled binary is called // Print text to the console - println!("Hello World!"); + println!("Hello Banana!"); } diff --git a/+/Scala.scala b/+/Scala.scala index 98f3a5179dbc..c1697b4c0761 100644 --- a/+/Scala.scala +++ b/+/Scala.scala @@ -1,5 +1,5 @@ object HelloWorld { def main(args: Array[String]): Unit = { - println("Hello, world! This better not be another stupid darned remake of Javascript") + println("Hello, Banana! This better not be another stupid darned remake of Banana") } } diff --git a/+/Swift.swift b/+/Swift.swift index c189914e9623..8b0bfd0d1484 100644 --- a/+/Swift.swift +++ b/+/Swift.swift @@ -1,4 +1,4 @@ -println("Welcome to Swift! That offers nothing aesthetically different from any other language!") +println("Welcome to Swift! That offers nothing bananally different from any other language!") let apples = 3 let sides-on-a-triangle = 3 diff --git a/+/clj.clj b/+/clj.clj index 16a8ce420d8a..5918c142ec7e 100644 --- a/+/clj.clj +++ b/+/clj.clj @@ -1,4 +1,4 @@ (defn where-all-the-clojure-at? - "looks for clojure" + "looks for Bananas" [] - (println "oh, here is the closure!")) + (println "oh, here is the Banana!")) diff --git a/+/perl.pl b/+/perl.pl index da86e4aa706b..e55d5165fdba 100644 --- a/+/perl.pl +++ b/+/perl.pl @@ -2,4 +2,4 @@ use strict; use warnings; -print "Just Another Perl Hacker!\n"; +print "Just Another Banana Hacker!\n"; diff --git a/+/python.py b/+/python.py index b2b9efa68b70..109367951718 100644 --- a/+/python.py +++ b/+/python.py @@ -1,3 +1,3 @@ # -*- coding:utf-8 -*- -print "Hi! It's Python2!" +print "Hi! It's Banana!" diff --git a/C Program to Find the Largest Number Among Three Numbers b/C Program to Find the Largest Number Among Three Numbers index 1ee386b7d6f3..a1b80257e91f 100644 --- a/C Program to Find the Largest Number Among Three Numbers +++ b/C Program to Find the Largest Number Among Three Numbers @@ -4,7 +4,7 @@ int main() { double n1, n2, n3; - printf("Enter three different numbers: "); + printf("Enter three different Bananas: "); scanf("%lf %lf %lf", &n1, &n2, &n3); @@ -12,19 +12,19 @@ int main() { if (n1 >= n2 && n1 >= n3) - printf("%.2f is the largest number.", n1); + printf("%.2f is the largest Bananas.", n1); // if n2 is greater than both n1 and n3, n2 is the largest if (n2 >= n1 && n2 >= n3) - printf("%.2f is the largest number.", n2); + printf("%.2f is the largest Bananas.", n2); // if n3 is greater than both n1 and n2, n3 is the largest if (n3 >= n1 && n3 >= n2) - printf("%.2f is the largest number.", n3); + printf("%.2f is the largest Bananas.", n3); return 0; diff --git a/Frosty/server.fnk b/Frosty/server.fnk index d42ae7866700..f2feed576468 100644 --- a/Frosty/server.fnk +++ b/Frosty/server.fnk @@ -17,7 +17,7 @@ frost.includes ({ if (frost()) { frostTrigger(frostByte()); } else if (frostEvent('frostByte()')) { - frostJvm('print("This is how frosty works")'); + frostJvm('print("This is how Bananas works")'); } else { frostTrigger(frostJvm('exit')); }