-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
Milestone
Description
I don't know how to explain this without making it seem redundant...
Syntax
return [value]
Examples
return -> 0051: return // default
return true -> 0485: return_true // default
return false -> 059A: return_false // default
return is false -> 0AA1: else_return // CLEO
else return -> 0AA1: else_return // CLEO
return 0 -> 0AB2: cleo_return 1 0 // CLEO
return 1@ -> 0AB2: cleo_return 1 1@ // CLEO
return 3@ 5@ 7@ -> 0AB2: cleo_return 3 3@ 5@ 7@ // CLEO
return (4@, 6@, 8@) -> 0AA7: function_return 4@ 6@ 8@ // CLEO
return <5@, 7@, 9@> -> 0AA8: method_return 5@ 7@ 9@ // CLEO
Never use OP 0AA7 or 0AA8, so you are probably typing something nonsensical.
Reactions are currently unavailable