Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Don't forget PHP with Javascript. You could do == in both, but thats not type safe.
-
johnDoe32338y@Enocra I'd have to argue that, some codes are complete shit ;D hence why no one uses them.
And some are just damn annoying, like PHP. -
nmunro31908y@anamus Some languages use
a := "a"
And lisp doesn't use it at all for assignment
(def a "a") ; This defines a variable.
(= a "a") ; This checks for equality. -
nmunro31908y@fishy It's an interesting syntax.
(def a "a")
(if (= a "a")
(println "a is \"a\"")
(println "a is \"" a ""\"))
Thank you JavaScript.
undefined
equality
javascript