Solidity Tutorial - Variable Types

Поделиться
HTML-код
  • Опубликовано: 25 дек 2024

Комментарии • 35

  • @HomeWithDrew
    @HomeWithDrew 2 года назад +1

    Just starting on my journey of solidity programming. You have started to answer questions, but leaving me with more!
    Will be going through your channel to find as much info as possible

  • @weinbenderwladimir742
    @weinbenderwladimir742 4 года назад +6

    Your tutorials are excellent! I love every single one!

  • @carlosfernandez6470
    @carlosfernandez6470 5 лет назад +4

    Finally an excellent solidity tutorial. Thanks a lot and keep it uup

  • @yashdeore473
    @yashdeore473 3 года назад +1

    You are a brilliant teacher.

  • @alextiger548
    @alextiger548 5 лет назад +3

    Thank you for the nice introduction

  • @aaquilahamedpm
    @aaquilahamedpm 3 года назад

    this was amazing , well done mate , do this again with the new version of solidity .8 ++ it would be awesome

  • @MotherCoin
    @MotherCoin 4 года назад +1

    Thank you

  • @217-sritejrajulu6
    @217-sritejrajulu6 4 года назад +2

    you are awesome buddy

  • @coolplayer2512
    @coolplayer2512 5 лет назад +1

    Thanks nice explanation.Is there any data type to hold floating values?

    • @EatTheBlocks
      @EatTheBlocks  5 лет назад +2

      so there isnt. I ll do another videos on how to manage floating point number in solidity. but basically you need to multiply your float so that it becomes an integer, and manipulate that.

    • @coolplayer2512
      @coolplayer2512 5 лет назад

      @@EatTheBlocks Ok Thanks.

  • @jaymac826
    @jaymac826 2 года назад

    is Bool a variable or a data type ?

  • @HappyHiker8383
    @HappyHiker8383 2 года назад

    Hello
    Beginner questions - Do you have any recommendations/videos where you can learn the structure of the syntax - for example when calling on functions I am not sure when to use ( ) and when and when not to insert arguments inside? Any suggestions on resources or videos you have made?

  • @colloidalsilver177
    @colloidalsilver177 3 года назад

    So you don’t have to initialize the variables as parameters in the function? Example add(a, b) etc…..?

  • @feelosophy5237
    @feelosophy5237 2 года назад

    Thank you

  • @217-sritejrajulu6
    @217-sritejrajulu6 4 года назад

    can you do a video on how to return multiple arguments from a function , function calling , returning multi dimensional arrays , and recursive functions etc

    • @EatTheBlocks
      @EatTheBlocks  4 года назад +1

      thanks for the suggestion, I ll think about it!

  • @westzapwood8697
    @westzapwood8697 3 года назад

    How does it run in the blockchain? Is it simply just running on EVERY computer that is running Ethereum? And how does the memory architecture look like if we're running it on someone else's computer?

  • @codewithd6756
    @codewithd6756 4 года назад

    Can we use float type numbers in solidity..?

    • @EatTheBlocks
      @EatTheBlocks  4 года назад +1

      no we cant. We only use integers.

  • @Royalhumanresources
    @Royalhumanresources 5 лет назад

    please let me know , what is the input for bytes32, i enter a string or binary or hex, it gives error?

    • @EatTheBlocks
      @EatTheBlocks  5 лет назад

      seems like a bug... I tried "0x74686973", which is a hash coming from web3.utils.fromAscii(), so I know its correct.
      You can ask in the gitter channel of Remix, and let us know here what they say.

  • @АлександрМокроусов-ч2с

    Спасибо

    • @EatTheBlocks
      @EatTheBlocks  5 лет назад

      Does this mean thank you? thanks haha!

  • @AshisDash90
    @AshisDash90 3 года назад

    Your free email course is no more free now. It costs $ 249

    • @EatTheBlocks
      @EatTheBlocks  3 года назад

      ? This is the free (video) course, which is still...free indeed.
      eattheblocks.com/bootcamp

  • @Nvjttgjygh
    @Nvjttgjygh 2 года назад

    Awesome intro video for variable types! but as per my understanding, value type and variable type, they are not the same, right?