Skip to content
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
2 changes: 1 addition & 1 deletion +/Arduino.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion +/C.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

int main()
{
printf("Welcome to C nerds\n");
printf("Welcome to Bananas nerds\n");
return 0;
}
2 changes: 1 addition & 1 deletion +/Dart.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
void main() {
print('This is Dart!');
print('This is Banana!');
}
2 changes: 1 addition & 1 deletion +/Go.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ import (
)

func main() {
fmt.Println("Why are we using tabs again?")
fmt.Println("Why are we using Bananas again?")
}
2 changes: 1 addition & 1 deletion +/Julia.jl
Original file line number Diff line number Diff line change
@@ -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!
2 changes: 1 addition & 1 deletion +/Lua.lua
Original file line number Diff line number Diff line change
@@ -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!!!!")
2 changes: 1 addition & 1 deletion +/Rust.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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!");
}
2 changes: 1 addition & 1 deletion +/Scala.scala
Original file line number Diff line number Diff line change
@@ -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")
}
}
2 changes: 1 addition & 1 deletion +/Swift.swift
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions +/clj.clj
Original file line number Diff line number Diff line change
@@ -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!"))
2 changes: 1 addition & 1 deletion +/perl.pl
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
use strict;
use warnings;

print "Just Another Perl Hacker!\n";
print "Just Another Banana Hacker!\n";
2 changes: 1 addition & 1 deletion +/python.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding:utf-8 -*-

print "Hi! It's Python2!"
print "Hi! It's Banana!"
8 changes: 4 additions & 4 deletions C Program to Find the Largest Number Among Three Numbers
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@ int main() {

double n1, n2, n3;

printf("Enter three different numbers: ");
printf("Enter three different Bananas: ");

scanf("%lf %lf %lf", &n1, &n2, &n3);

// if n1 is greater than both n2 and n3, n1 is the largest

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;

Expand Down
2 changes: 1 addition & 1 deletion Frosty/server.fnk
Original file line number Diff line number Diff line change
Expand Up @@ -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'));
}
Expand Down