Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 460 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 460 Bytes

Python

def Algo( ):
  return "Algorithms !"
                            # Just for fun
if __name__ == "__main__": 
  Algo() 

Javascript

function LOL ( ) {
   return "Algorithms ! "
   }
                           // Coding is Fun 
let x = LOL ( )
console.log(x)