-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcolon-s-variable.fs
More file actions
44 lines (34 loc) · 986 Bytes
/
colon-s-variable.fs
File metadata and controls
44 lines (34 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
\ galope/colon-s-variable.fs
\ This file is part of Galope
\ http://programandala.net/en.program.galope.html
\ Author: Marcos Cruz (programandala.net), 2013, 2017.
\ ==============================================================
require ./s-variable.fs
: :svariable ( ca len -- ) nextname svariable ;
\ doc{
\
\ :svariable ( ca len -- )
\
\ Create a string variable with name _ca len_.
\
\ Usage example:
\ ----
\ s" my-string" :svariable
\ s" Hello" my-string place
\ my-string count type
\ ----
\
\ See: `svariable`, `:$variable`, `:create`, `:alias`.
\
\ }doc
\ ==============================================================
\ Change log
\ 2013-07-11 Added. Taken from Fendo
\ (http://programandala.net/en.program.fendo)
\
\ 2017-08-17: Update change log layout and source style.
\
\ 2017-10-26: Improve documentation.
\
\ 2017-11-04: Rename module after the general convention, ie.
\ <colon-s-variable.fs>. Update filename of `svariable`.