GnuVince
08-11-2002, 11:21 PM
People who read PrBacterio's code and some of mine surely noticed that (depending on the language) it has colors!
Example:
;; Factorial function
(defun fact (n)
(if (= n 1)
1
(* m (fact (- n 1)))))
But his code is very hacky (no insult intended: he said it himself), so I can't add support for other languages. So I wondered if anyone would like to assist me in doing a similar project, but where it would (hopefully) be more easy to add support for other languages.
If you are interested, let me know. I haven't decided if I really want to do this, but just in case I do, I'd like to have support.
This project would/will be coded in Python, no GUI.
Example:
;; Factorial function
(defun fact (n)
(if (= n 1)
1
(* m (fact (- n 1)))))
But his code is very hacky (no insult intended: he said it himself), so I can't add support for other languages. So I wondered if anyone would like to assist me in doing a similar project, but where it would (hopefully) be more easy to add support for other languages.
If you are interested, let me know. I haven't decided if I really want to do this, but just in case I do, I'd like to have support.
This project would/will be coded in Python, no GUI.