Hello,
how can I put a comment to a method in a b4a library?
Thanks :BangHead:
how can I put a comment to a method in a b4a library?
Thanks :BangHead:
Hello,
how can I put a comment to a method in a b4a library?
Thanks :BangHead:
Comment are usually added when the library is created
example:
/**
* example comments here.
*/
Hi giga,
but this comment is in java. I want to comment a b4a library
'this is my comment about my super duper sub
'this sub should return the sum of two numbers
Sub ReturnAplusB(a as int, b as int) as int
return a + b
end sub