I have been programming using a thing called ruby. Ruby is the first step to programming. You can't control the computer but you can make it say stuff. you also have to use command prompt (or terminal on Linux computers). I use my Ubuntu Linux computer for programming with ruby. Here is a example of what would happen: It asks you for your name. When you type it it greets you with your name. If you type my name, it says: your awesome Nicholas. Here is the program in code:
puts 'what is your name?'
name = gets.chomp
if name== 'Nicholas'
puts 'your awesome ' + name + '!'
else
puts 'hello ' + name + '!'
end
The two screen-shots is from my longest program.
but lately I have been using plain terminal instead of ruby, which is very dangerous because you can wipe the entire computer from there. in fact, I once was running a program on the terminal (actually, I was installing a program on terminal), when all of a sudden a license agreement came up. I didn't know how to accept it so I exited the terminal, which closed the program. after that I couldn't install anything. I rebooted the computer but it still wouldn't install anything. it kept on saying another program was using it.thankfully, I was able to type in the right command and it closed the other program. the last picture is from the command prompt.




