Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Fun activity Say hello... in a coding language!

Java:
public class Main {
     public static void main(String args[]) {
          System.out.println("Hello, From Сhicago");
     }
}
 
Last edited by a moderator:
Hello Coders!

Let's do something fun! This is supposed to be a fun way for us as a community to engage and learn from each other.

Okay, here's how it goes. You can decide what language you want to use, and all you have to say is "Hello, (person above)!" in the language that you picked ([UWSL][UWSL][UWSL]Using the BBCode function)[/UWSL][/UWSL][/UWSL].
So here's an example
C++:
std::cout << "Hello, Master Yoda";
Python:
print("hello, master yoda")
 
Ima reply in a really old programming language
Called B which was the predecessor to C

Code:
main()
{
    "Hello, World!\n";
}

And rascal
Code:
println("Hello, World!");

And racket
Code:
#lang racket

(displayln "Hello, World!")
 
Last edited by a moderator:
Hi reply in javascript

JavaScript:
const name = "Creatorofstuff";
const greeting = "Hello " + name;
const reversedGreeting = greeting.split('').reverse().join('');
const funnyGreeting = reversedGreeting.toUpperCase() + "!!! 🎉🎊🥳";
console.log(funnyGreeting);


In Rust
Code:
fn main() {

    let name = "Creatorofstuf";
    let greeting = format!("Hello {}", name);
    let reversed_greeting: String = greeting.chars().rev().collect();
    let funny_greeting = reversed_greeting.to_uppercase() + "!!! 🎉🎊🥳";

    println!("{}", funny_greeting);
}
 
Here is the code -

#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf("Hello, Everyone");
return 0;
}

Thanks
 
Back
Top Bottom