Learn How to Create Your Own Programming Language createyourproglang.com
def compress(source) source.gsub!(/\s+/, " ") # collapse space source.gsub!(/\/\*(.*?)\*\//, "") # remove comments - caution, might want to remove this if using css hacks ...
There is a lot of repetitio...
There is a lot of repetitio...