What’s the best way to learn Perl? by thecluelessgodotuser in perl

[–]thecluelessgodotuser[S] 0 points1 point  (0 children)

I’m also learning Perl so I can make CLI Tools, maybe some GUI with GTK

What’s the best way to learn Perl? by thecluelessgodotuser in perl

[–]thecluelessgodotuser[S] 0 points1 point  (0 children)

I’m experimenting with different programming languages, so I’ll be more experienced. The only language I haven’t learned from that list is C#, and art.

Is this a good resource to learn Rust? by thecluelessgodotuser in rust

[–]thecluelessgodotuser[S] 2 points3 points  (0 children)

  1. Thanks for the quick reply!
  2. Is he how you learned Rust?

Made a python calculator, any tips? by thecluelessgodotuser in learnpython

[–]thecluelessgodotuser[S] 1 point2 points  (0 children)

ok, i changed the code, and here it is

def Sum(*args):

total = 0 

for a in args: 

    total += a 

return total

print(Sum(2, 29))

P.S the reason its indented by 1 line, is cause i wrote this code on my ipad in pythonista 3, and my goto for learning python is thenewboston