Cyclops or '𐙀' is a programming language written in Linear A, a forgotten/undeciphered script used 3500-4500 years ago on the Greek island of Minos.
            help();
            
            print('hello world');
            
            > 'hello world'
            
            44 + 6
            
            > 50
            
            var x = 500
            
            console.log(x - 100);
            
            > 400
            
            function square(param1) {
              return param1 * param1;
            }
          
        Commands are individual symbols in Linear A. Multiple characters can be the name of a variable or function. Uses Unicode codepoints for Linear A and Aegean font by George Douros.
Numbers are written in Aegean numerals.
Any non-Minoan characters are interpreted as strings.
A guessing game written in Cyclops:
            𐙀
            𐜝 I'm thinking of a number one to one hundred
            𐘾𐘾 𐚁
            𐙟
                𐘽𐘽 𐝠 Guess a number:
            
                𐘜 𐘽𐘽
                    𐚠 𐘾𐘾
                        𐜝 too high
                    𐚡 𐘾𐘾
                        𐜝 too low
                    𐙈 𐘾𐘾
                        𐝏
                𐘩
            𐙟
            𐜝 you guessed correctly! you win!
          
        
            help();
            print("..a number 1-100");
            var x = random(1, 100);
            while(true) {
                var y = input("Guess:");
            
                  if y > x:
                      print("too high");
                  if y < x:
                      print("too low");
                  if y == x:
                      break;
            
            }
            print("you guessed correctly! you win!")
          
        Math is evaluated left-to-right, without order of operations. So 3 + 2 * 4 == 20 not 11
Conditionals if value of variable 𐚨𐚨 is greater than, less than, or equal to 5
            𐘜 𐚨𐚨
            
                𐚠 𐄉
            
                    𐜝 greater than 3
            
                𐚠 𐄋
            
                    𐜝 greater than 5, too
            
                𐚡 𐄋
            
                    𐜝 less than 5
            
                𐙈 𐄋
            
                    𐜝 equal to 5
            
            𐘩
          
        Declare a function with this character 𐛪 that looks like an archer.
            
Inside the function, 𐝈 will represent the first parameter passed into the function,
            followed by 𐝉, 𐝊, 𐝋, and 𐝌
          
Write the squaring function f(x) = x * x. Let's name the function 𐝎𐝎.
            𐛪 𐝎𐝎
            
                𐝈 𐙨 𐝈
            
            𐛫
          
          Now call the function:
            𐝎𐝎 𐄊
            
            > 𐄐𐄌