ID:174806
 
i was looking in a demo about logins and i found this line of code...
char_name = input("What is your name?.","Name","[src]") as null|text
i was just wondering why it says " as null|text" i tried to do it w/o as null|text and it worked too. whats up with this mysterious "as null|text"
To quote the reference, "null //indicates that the argument is optional". The | means it can be both. Roughly it translates to its text, but it also has the cancel button in case you dont want to fill it in.