13 lines
385 B
Plaintext
13 lines
385 B
Plaintext
|
|
function about_text()
|
|
define sb base.StringBuffer
|
|
|
|
let sb = base.StringBuffer.create()
|
|
call sb.append("This application was produced by NACE")
|
|
call sb.append("\n\n")
|
|
call sb.append("Application for Cycle Counting Inventory Mobile")
|
|
call sb.append("\n\n")
|
|
call sb.append("Version Android 4.01 Revision 04")
|
|
|
|
return sb.toString()
|
|
end function |