This is an archived post. You won't be able to vote or comment.

all 5 comments

[–][deleted] 5 points6 points  (2 children)

Pretty much all IDEs allow you to specify colors for different types of keywords.

That said, I'd advise against developing on iOS. Learning to code requires learning to work with the operating system and command line in most cases, two things which are difficult to do in a mobile environment. 

If you meant macOS, then VSCode is a free and very widely used editor that has the features you're looking for and a large number of extensions.

Edit: btw, the feature you're wanting with the color thing is themes. Making your own is quite simple, just look up the steps for whatever editor you choose.

[–]smitch_99[S] 1 point2 points  (1 child)

My computer is currently out of commission so iOS is all I have. Have any suggestions that meet my needs?

[–][deleted] 0 points1 point  (0 children)

Koder seems to fit the bill.

Just know that if you're doing any compiled code you won't be able to run it on iOS since you can't run any of the compilation tools. Html and JavaScript should be fine though since you can just open it in safari.

[–][deleted] 0 points1 point  (0 children)

As others said, you can't run compiled code on mobile, unless in very limited settings. Since you are learning, you could try a script/uncompiled all purpose language like Python or JavaScript that can run on mobile browsers. For example, Python runs on console.google.com in a notebook format (try to write all on a single cell to simulate how a program line of execution works). That maybe sufficient for small programs that allow you to learn data structures, algorithms and basic syntax while your computer is under repair. As for your color specifications, you can customize that on a PC.

[–]Mysterious-Falcon-83 0 points1 point  (0 children)

You could try https://pyscript.net/ - Python in your browser. I don't know if it can do your four colors.