Last active
August 7, 2024 08:01
-
-
Save MayowaObisesan/67cb9fdfd4d050199fc503e225ea2f6f to your computer and use it in GitHub Desktop.
This is a demo to show what github gist is all about.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function demo() { | |
console.log("This is a demo function in javascript"); | |
return; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def demo: | |
print("This is a demo function in Python") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fn main() { | |
demo(); | |
} | |
fn demo() { | |
println!("This is a demo function in rust"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh cool. This is awesome.