function createWebsite() { return "GarzaDev"; }
    
    
      const skills = ["HTML", "CSS", "JavaScript", "Python"];
    
    
      def hello_world(): print("Welcome to GarzaDev")
    
    
      
      for(let i=0; i < skills.length; i++) {
        console.log(skills[i]);
      }
    
    
      class Developer {
        constructor() {
          this.name = "Heriberto";
        }
      }
    
    
      import React from 'react';
      function App() {
        return <div>Hello!</div>;
      }
    
    
      async function fetchData() {
        const response = await fetch('/api');
      }
    
    
      const portfolio = {
        name: 'GarzaDev',
        author: 'Heriberto Garza'
      };
    
    
      
      01001000 01100101 01101100 01101100 01101111 00100001