shell stuff, preprocessor directive

This commit is contained in:
udo
2022-01-21 22:22:14 +00:00
parent 3e8f0f1fa7
commit 939009f9a1
22 changed files with 342 additions and 54 deletions
+9
View File
@@ -0,0 +1,9 @@
#load "lib.uce"
RENDER()
{
<>
Hello world2
<?= bla("!x") ?>
</>
}
+5
View File
@@ -0,0 +1,5 @@
String bla(String x)
{
return(x + "!");
}