reference: Macro #455

git-svn-id: svn://ultimatepp.org/upp/trunk@5912 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2013-03-14 19:47:46 +00:00
parent 95ee8ab631
commit 262adf909b
6 changed files with 290 additions and 0 deletions

5
reference/Macro/Func.usc Normal file
View file

@ -0,0 +1,5 @@
// One of the functions used in the "Using functions" macro.
// As you can see, it can be defined in completely separate file.
fn FuncB(arg) {
return arg + "B";
}