about summary refs log tree commit diff stats
path: root/wiki/lib/plugins/usermanager/lang/sk/intro.txt
diff options
context:
space:
mode:
authorahriman <ahriman@falte.red>2019-01-02 04:57:35 +0000
committerahriman <ahriman@falte.red>2019-01-02 04:57:35 +0000
commit2bd7f83a6495011ada78ca8a9f2af417caf01760 (patch)
treef9acdb7f09e011c65330ab993d4db3620787dbfb /wiki/lib/plugins/usermanager/lang/sk/intro.txt
parentbcb215c3a7e914d05f166846a33860e48bba64fb (diff)
downloadsite-2bd7f83a6495011ada78ca8a9f2af417caf01760.tar.gz
removed dokuwiki
Diffstat (limited to 'wiki/lib/plugins/usermanager/lang/sk/intro.txt')
-rw-r--r--wiki/lib/plugins/usermanager/lang/sk/intro.txt2
1 files changed, 0 insertions, 2 deletions
diff --git a/wiki/lib/plugins/usermanager/lang/sk/intro.txt b/wiki/lib/plugins/usermanager/lang/sk/intro.txt
deleted file mode 100644
index 0a626de..0000000
--- a/wiki/lib/plugins/usermanager/lang/sk/intro.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-====== Správa používateľov ======
-
Agaram <vc@akkartik.com> 2015-07-13 19:10:59 -0700 1771' href='/akkartik/mu/commit/global.mu?h=hlt&id=fc2046a176334037507f77de382abdabf2895aae'>fc2046a1 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14

                                                      
          
                                    
                                            
                                          
                              


     
         
                                
                                       
 
# example program: creating and using global variables

def main [
  # allocate 5 locations for globals
  global-space:space <- new location:type, 5
  # read to globals by using /space:global
  1:num/space:global <- copy 3
  foo
]

def foo [
  # ditto for writing to globals
  $print 1:num/space:global, 10/newline
]