Skip to content

Instantly share code, notes, and snippets.

View xelemental's full-sized avatar
🦅

Elemental X xelemental

🦅
View GitHub Profile
fn main(){
about1("Rohan", 20, "PowerPC");
about2("Kumar", "ARM");
about3("Rohit", "India");
fn about1(value : &str, age: u64, processor_choice: &str){
println!("{} is {} and he is a {} enthusiast", value, age, processor_choice);
}
#include <iostream>
using namespace std;
void multiply(int a, int b)
{
cout << a * b << endl;
}
void multiply(double a, double b)