diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-03 21:23:57 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-03 21:23:57 +0300 |
commit | e1c2c0cff0469063313d8bbbd108cd10db9ee677 (patch) | |
tree | 1b0757c65586e0e8e9404f3b6680d6967cf56e01 /test/typeof1.awk | |
parent | d77474639979a4f707107d28fa1e8e84510880e4 (diff) | |
parent | 9907a598dca8f129422c42f8c4fa3b4e2c988221 (diff) | |
download | egawk-e1c2c0cff0469063313d8bbbd108cd10db9ee677.tar.gz egawk-e1c2c0cff0469063313d8bbbd108cd10db9ee677.tar.bz2 egawk-e1c2c0cff0469063313d8bbbd108cd10db9ee677.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'test/typeof1.awk')
-rw-r--r-- | test/typeof1.awk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/typeof1.awk b/test/typeof1.awk index c301030e..9db64484 100644 --- a/test/typeof1.awk +++ b/test/typeof1.awk @@ -1,9 +1,9 @@ BEGIN { a = 5 ; print typeof(a) print typeof(b) - print typeof(@/foo/) +# print typeof(@/foo/) c = "foo" ; print typeof(c) d[1] = 1 ; print typeof(d), typeof(d[1]) - e = @/foo/ ; print typeof(e) - print typeof(@/bar/) +# e = @/foo/ ; print typeof(e) +# print typeof(@/bar/) } |