I searched Instance.Archivable on api
And I saw this code example and wonder what “>” mean here?
local part = Instance.new("Part")
print(part:Clone()) --> Part
part.Archivable = false
print(part:Clone()) --> nil
I searched Instance.Archivable on api
And I saw this code example and wonder what “>” mean here?
local part = Instance.new("Part")
print(part:Clone()) --> Part
part.Archivable = false
print(part:Clone()) --> nil
What you asked means:
> greater than
what does it mean? Greater than a Part?
they are basically saying what the output of the print() command will be in the output , so the first print() command will have an output = to Part
and the other print() will = to nil
When starting a topic use the correct format, but what it means is that if the part is still Archivable then it will return “Part”, but if part.Archivable is false then it will return nil. So if it finds the part, then it will return “Part”, and then the other way around.
I know if parts are returned or not but what does greater mean? Creating something greater than a Part??
it basically means equals to, meaning what the output will be in simpler terms.
Why does it mean “greater” then? It could have said “equal” at the first place
thats because it makes an arrow sign in programs like > >
so basically when you try to type an arrow you make the dash and then the greater than sign and this comes out —>
for example when you type an essay on your keyboard and you want to make an arrow pointing to the right you click the dash and then the greater than sign on your keyboard creating this : →
so basically it has nothing to do with greater than , its more of a presentation type of thing, it really has no importance, dont worry about it, its like when i want to make a happy face so i use parentheses zeroes and a dash like this ( 0 - 0 )
I get it now. I guess can’t type > in scripting?
you can , im guessing it was a program transfer that caused it to look like > instead of >
Thanks for all the description hahah