Death of Flash

Out of context: Reply #28

  • Started
  • Last post
  • 205 Responses
  • armsbottomer0

    @spraycan
    i used to think javascript sucked too, but then i learned how to use it correctly and saw its beauty.

    also, java is too much for anyone. sorting a hashmap in a language shouldn't involve as much production as it does in java.

    maybe i'm just hate java because i've been experimenting with dynamic languages that have java wrappers. for example, in clojure ( a lisp wrapper for java, difficult to get at first but i'm trying to learn it now):

    java:
    public class Person {
    private String firstName;
    private String lastName;
    public Person( String firstName, String lastname){
    this.firstName = firstName;
    this.lastName = lastName;
    }

    public String getFN(){
    return firstName;
    }

    public String getLN(){
    return lastName;
    }

    public void setFN(String firstName){
    this.firstName = firstName;
    }

    public void setLN(String lasttName){
    this.lastName = lastName;
    }

    }

    lisp:

    (defstruct person :first-name :last-name)

    personally, i'd rather write a one line than a shit load. javascript has many similarities to lisp, and its ease of use is one of them. so i reiterate, fuck java/as3.

    • just because it's a dynamic language, doesn't mean it's not a REAL programming language.armsbottomer
    • it is not , it can't control streams, it doesnt implements sockets, it is just a script for popping stuff out of a brownser..spraycan
    • brownser, many people try to push the boundaries of it but theres no point in making oranges out of applesspraycan
    • they are called "script kiddies", lolspraycan

View thread