aboutsummaryrefslogtreecommitdiffstats
path: root/docs/frequently-asked-questions.rst
diff options
context:
space:
mode:
authorRJ Catalano <catalanor0220@gmail.com>2016-01-12 05:36:30 +0800
committerRJ Catalano <catalanor0220@gmail.com>2016-01-12 05:36:30 +0800
commit9c29cf79cf404132ec3ab149c492cfa97b677543 (patch)
tree2a839526306fbac3abd90076e1ced09ea97fd9af /docs/frequently-asked-questions.rst
parentac664e7f86593ff3d70576ac475f07f9c91b9ca8 (diff)
downloaddexon-solidity-9c29cf79cf404132ec3ab149c492cfa97b677543.tar
dexon-solidity-9c29cf79cf404132ec3ab149c492cfa97b677543.tar.gz
dexon-solidity-9c29cf79cf404132ec3ab149c492cfa97b677543.tar.bz2
dexon-solidity-9c29cf79cf404132ec3ab149c492cfa97b677543.tar.lz
dexon-solidity-9c29cf79cf404132ec3ab149c492cfa97b677543.tar.xz
dexon-solidity-9c29cf79cf404132ec3ab149c492cfa97b677543.tar.zst
dexon-solidity-9c29cf79cf404132ec3ab149c492cfa97b677543.zip
added documentation and one last test for struct creation inline
Diffstat (limited to 'docs/frequently-asked-questions.rst')
-rw-r--r--docs/frequently-asked-questions.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst
index cf037131..bf493167 100644
--- a/docs/frequently-asked-questions.rst
+++ b/docs/frequently-asked-questions.rst
@@ -317,7 +317,8 @@ by `msg.data`.
Can state variables be initialized in-line?
===========================================
-Yes, this is possible for most types (even for structs), but not for arrays.
+Yes, this is possible for all types (even for structs). However, for arrays it
+should be noted that you must declare them as static memory arrays. Futhermore, multi dimensional arrays cannot be declared inline.
Examples::
@@ -325,6 +326,7 @@ Examples::
struct S { uint a; uint b; }
S public x = S(1, 2);
string name = "Ada";
+ string[4] memory AdaArr = ["This", "is", "an", "array"];
}
contract D {
C c = new C();