Sha256: 7ab868a3510e23f3eff44480ababed2a47e831d0ba593687b8ac0299a4648c1f

Contents?: true

Size: 768 Bytes

Versions: 22

Compression:

Stored size: 768 Bytes

Contents

PUT VERB
  NAME: put
  SHORTCUT: p

  DESCRIPTION
    Put a value into an object.
    The value is the result of an expression.

  SYNTAX
    put <expression> into <dst.path>

  PARAMETERS
    expression - The expression that is evaluated.
    dst.path - The path to the destination object.

  RESULT
    <it> will contain the result of the evaluation.

  ERRORS
    Missing Expression
      - The 'into' keyword is missing.
      - No source expression is provided.

    Target (into) missing
      - The destination is not specified.

    Target could not be resolved
      - The destination of the put cannot be resolved.

  EXAMPLE

    > put 'one' into str
    > put "two" into str
    > put 123 into x
    > put 3 + 5 into x
    > put TRUE into flag

  SEE ALSO

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
gloo-lang-1.0.2 lib/gloo_lang/help/verbs/put.txt
gloo-1.0.0 lib/gloo/help/verbs/put.txt
gloo-lang-1.0.1 lib/gloo_lang/help/verbs/put.txt
gloo-lang-1.0.0 lib/gloo_lang/help/verbs/put.txt
gloo-lang-0.9.11 lib/gloo_lang/help/verbs/put.txt
gloo-lang-0.9.10 lib/gloo_lang/help/verbs/put.txt
gloo-lang-0.9.9 lib/gloo_lang/help/verbs/put.txt
gloo-lang-0.9.8 lib/gloo_lang/help/verbs/put.txt
gloo-lang-0.9.7 lib/gloo_lang/help/verbs/put.txt
gloo-lang-0.9.6 lib/gloo_lang/help/verbs/put.txt
gloo-lang-0.9.5 lib/gloo_lang/help/verbs/put.txt
gloo-lang-0.9.4 lib/gloo_lang/help/verbs/put.txt
gloo-lang-0.9.3 lib/gloo_lang/help/verbs/put.txt
gloo-0.8.0 lib/gloo/help/verbs/put.txt
gloo-0.7.7 lib/gloo/help/verbs/put.txt
gloo-0.7.6 lib/gloo/help/verbs/put.txt
gloo-0.7.5 lib/gloo/help/verbs/put.txt
gloo-0.7.4 lib/gloo/help/verbs/put.txt
gloo-0.7.3 lib/gloo/help/verbs/put.txt
gloo-0.7.2 lib/gloo/help/verbs/put.txt