def floatcheck(x:Float, div:Int): String = (x / div).toString.split("\\.")(1) match {
case "0" => "int"
case _ => "float"
}
(1 until 100).foreach(e => {
if(floatcheck(e,15) == "int") println("fizzbuzz")
else if(floatcheck(e,3) == "int") println("fizz")
else if(floatcheck(e,5) == "int") println("buzz")
else println(e)
})
(I'm guessing this works, or maybe I fall into that category as well ;))
Not in America, it does not. You folks have "hate speech" laws, banned symbols, banned words, banned expressions, and used to have banned video games, music, and movies. The core of your legal system has the concept of "honor"/"dignity", which is inherently subjective.
The justification is always a variant of your thought, saying that it will only affect "bad people", with the very definition of that being heavily influenced by the aforementioned concepts.
Germans tend to defend the concept of filing charges against an individual for the crime of "insulting them" with similar logic - it's generally a nasty thing to do and only "bad people" will do it, therefore, it shall be punishable under the law.
Any limits to free speech are by definition on the famous "slippery slope". As others have called out, once the legal precedent is set, nothing stops politicians to expand it at their will, given that it is based on subjective judgment - history can be a great teacher - and I'd like to remind you that a much harsher version of the current German "social media hate speech" law just made its way through international media earlier this year. This law was justified with "a rise in right wing extremism".
I've said it before, I'll say it again: The ACLU, an arguably left-leaning organization, has famously defended KKK member's 1st amendment rights for those very reasons. They don't argue about the content - as an analogy to the HD topic, it should be easy to debunk with massive amounts of historical evidence - but rather about fundamental human (and, in the case of the United States, constitutional) rights.
Naturally, all those points apply to governmental censorship and not to a private entity. That being said, I don't believe in limits to free speech.