Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Anyone using Rust?

Anyone using Rust?

Scheduled Pinned Locked Moved The Lounge
helpquestion
15 Posts 10 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Chris Maunder

    Rust[^]

    Quote:

    Rust is a curly-brace, block-structured expression language. It visually resembles the C language family, but differs significantly in syntactic and semantic details

    It's a Mozilla backed language and I can't help but think the world does not need another programming language. However, I'd be interested to hear from anyone who's been playing with it.

    P Offline
    P Offline
    Pete OHanlon
    wrote on last edited by
    #2

    Ahh, the enemy of Iron Man.

    S 1 Reply Last reply
    0
    • C Chris Maunder

      Rust[^]

      Quote:

      Rust is a curly-brace, block-structured expression language. It visually resembles the C language family, but differs significantly in syntactic and semantic details

      It's a Mozilla backed language and I can't help but think the world does not need another programming language. However, I'd be interested to hear from anyone who's been playing with it.

      B Offline
      B Offline
      Bassam Abdul Baki
      wrote on last edited by
      #3

      Nope! Looks like F# for Mozilla though.

      Web - BM - RSS - Math - LinkedIn

      1 Reply Last reply
      0
      • C Chris Maunder

        Rust[^]

        Quote:

        Rust is a curly-brace, block-structured expression language. It visually resembles the C language family, but differs significantly in syntactic and semantic details

        It's a Mozilla backed language and I can't help but think the world does not need another programming language. However, I'd be interested to hear from anyone who's been playing with it.

        D Offline
        D Offline
        Dennis E White
        wrote on last edited by
        #4

        aside from being a new language what is it's purpose? to create something simpler to work vs C/C++? getting kind of burned on all of these new languages trying to create a simpler c/c++. are pointers really that much of a problem to deal with?

        you want something inspirational??

        S J 2 Replies Last reply
        0
        • C Chris Maunder

          Rust[^]

          Quote:

          Rust is a curly-brace, block-structured expression language. It visually resembles the C language family, but differs significantly in syntactic and semantic details

          It's a Mozilla backed language and I can't help but think the world does not need another programming language. However, I'd be interested to hear from anyone who's been playing with it.

          E Offline
          E Offline
          emartinho
          wrote on last edited by
          #5

          Yeah, my car's got Rust all over it! :laugh: Sorry couldn't resist.... -EM

          1 Reply Last reply
          0
          • C Chris Maunder

            Rust[^]

            Quote:

            Rust is a curly-brace, block-structured expression language. It visually resembles the C language family, but differs significantly in syntactic and semantic details

            It's a Mozilla backed language and I can't help but think the world does not need another programming language. However, I'd be interested to hear from anyone who's been playing with it.

            F Offline
            F Offline
            Forogar
            wrote on last edited by
            #6

            Anyone who designs a modern computer language that shortens "not immutable" to "mut" doesn't get my vote.

            - I would love to change the world, but they won’t give me the source code.

            1 Reply Last reply
            0
            • C Chris Maunder

              Rust[^]

              Quote:

              Rust is a curly-brace, block-structured expression language. It visually resembles the C language family, but differs significantly in syntactic and semantic details

              It's a Mozilla backed language and I can't help but think the world does not need another programming language. However, I'd be interested to hear from anyone who's been playing with it.

              S Offline
              S Offline
              SoMad
              wrote on last edited by
              #7

              Nope, but I think they should have gone a little further and named the language Trust. :cool: Soren Madsen

              "When you don't know what you're doing it's best to do it quickly" - Jase #DuckDynasty

              B F 2 Replies Last reply
              0
              • S SoMad

                Nope, but I think they should have gone a little further and named the language Trust. :cool: Soren Madsen

                "When you don't know what you're doing it's best to do it quickly" - Jase #DuckDynasty

                F Offline
                F Offline
                Forogar
                wrote on last edited by
                #8

                OR for a language design to wrap other code they could have called it Crust.

                - I would love to change the world, but they won’t give me the source code.

                1 Reply Last reply
                0
                • S SoMad

                  Nope, but I think they should have gone a little further and named the language Trust. :cool: Soren Madsen

                  "When you don't know what you're doing it's best to do it quickly" - Jase #DuckDynasty

                  B Offline
                  B Offline
                  Bassam Abdul Baki
                  wrote on last edited by
                  #9

                  If they're cocky, they could have gone with Struts.

                  Web - BM - RSS - Math - LinkedIn

                  1 Reply Last reply
                  0
                  • D Dennis E White

                    aside from being a new language what is it's purpose? to create something simpler to work vs C/C++? getting kind of burned on all of these new languages trying to create a simpler c/c++. are pointers really that much of a problem to deal with?

                    you want something inspirational??

                    S Offline
                    S Offline
                    Sentenryu
                    wrote on last edited by
                    #10

                    Dennis E White wrote:

                    are pointers really that much of a problem to deal with?

                    Raw pointers? yeah Standard Library resource managers like unique_ptr and shared_ptr? no, those are quite simple.

                    D 1 Reply Last reply
                    0
                    • S Sentenryu

                      Dennis E White wrote:

                      are pointers really that much of a problem to deal with?

                      Raw pointers? yeah Standard Library resource managers like unique_ptr and shared_ptr? no, those are quite simple.

                      D Offline
                      D Offline
                      Dennis E White
                      wrote on last edited by
                      #11

                      Sentenryu wrote:

                      Raw pointers? yeah

                      maybe I am just old but I don't get the confusion. it could be that I spent a large part of my career in c/c++ and dealing with pointers was just something that I did. what I used to regularly carry with me on tool belt of code tricks was code for doing smart pointers[^]. this has to be one of my most favorite patterns. :-D

                      you want something inspirational??

                      S 1 Reply Last reply
                      0
                      • P Pete OHanlon

                        Ahh, the enemy of Iron Man.

                        S Offline
                        S Offline
                        Steve Wellens
                        wrote on last edited by
                        #12

                        Steel yourself... Here it comes... It'll certainly test your mettle. (That took a lot of brass) OK, I'm done.

                        Steve Wellens

                        1 Reply Last reply
                        0
                        • D Dennis E White

                          aside from being a new language what is it's purpose? to create something simpler to work vs C/C++? getting kind of burned on all of these new languages trying to create a simpler c/c++. are pointers really that much of a problem to deal with?

                          you want something inspirational??

                          J Offline
                          J Offline
                          Joe Woodbury
                          wrote on last edited by
                          #13

                          Dennis E White wrote:

                          are pointers really that much of a problem to deal with?

                          No, but they seem to freak a lot of people out.

                          1 Reply Last reply
                          0
                          • C Chris Maunder

                            Rust[^]

                            Quote:

                            Rust is a curly-brace, block-structured expression language. It visually resembles the C language family, but differs significantly in syntactic and semantic details

                            It's a Mozilla backed language and I can't help but think the world does not need another programming language. However, I'd be interested to hear from anyone who's been playing with it.

                            J Offline
                            J Offline
                            Joe Woodbury
                            wrote on last edited by
                            #14

                            Like most computer languages, it's silly. Start a project with it and then try hiring someone to help or replace you. Moreover, without a rich library or framework, it has even less of a point.

                            1 Reply Last reply
                            0
                            • D Dennis E White

                              Sentenryu wrote:

                              Raw pointers? yeah

                              maybe I am just old but I don't get the confusion. it could be that I spent a large part of my career in c/c++ and dealing with pointers was just something that I did. what I used to regularly carry with me on tool belt of code tricks was code for doing smart pointers[^]. this has to be one of my most favorite patterns. :-D

                              you want something inspirational??

                              S Offline
                              S Offline
                              Sentenryu
                              wrote on last edited by
                              #15

                              Dennis E White wrote:

                              what I used to regularly carry with me on tool belt of code tricks was code for doing smart pointers[^].

                              But once you make a smart pointer, they stop being raw pointers and become far less frightening ;P The problem isn't the pointers per se, but rather their indiscriminate use everywhere.

                              1 Reply Last reply
                              0
                              Reply
                              • Reply as topic
                              Log in to reply
                              • Oldest to Newest
                              • Newest to Oldest
                              • Most Votes


                              • Login

                              • Don't have an account? Register

                              • Login or register to search.
                              • First post
                                Last post
                              0
                              • Categories
                              • Recent
                              • Tags
                              • Popular
                              • World
                              • Users
                              • Groups