Tag: functions

itostr Convert integer to string. But strings and integers not connect with plus iteration (Ex: “Hello”+0 => imposible need to convert 0 or “Hello” to string or integer in IRL[In real life]). For example; def i = 0; # => 0 def str = itostr(i) # => "0" len Gives something to length. Sometimes usefull […]
How to make definitions and details. Definition Simple casting definition; def something = something; Hash Simple casting hashes; def pyramid = {"x":10, "y":10, "z":10} pyramid["x"] 10 Array Simple casting arrays; def triangle = [10,20,30] triangle[1] 10 Integer Simple casting integer; def zero = 0 0 String Simple casting string; def name = "Oytun" "Oytun" Functions […]