diff options
author | Eugene Sandulenko | 2016-08-02 10:58:56 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-03 23:40:36 +0200 |
commit | dc498881ef721b9443f64914e9a42bcf5afc967f (patch) | |
tree | 144d52673ce072098caf1a6170ebd5e41ecbfa86 /engines/director/lingo/tests | |
parent | 783ff8f8f259684c841af3d99a0df7542e16058e (diff) | |
download | scummvm-rg350-dc498881ef721b9443f64914e9a42bcf5afc967f.tar.gz scummvm-rg350-dc498881ef721b9443f64914e9a42bcf5afc967f.tar.bz2 scummvm-rg350-dc498881ef721b9443f64914e9a42bcf5afc967f.zip |
DIRECTOR: Lingo: Process extra or too few arguments for built-ins
Diffstat (limited to 'engines/director/lingo/tests')
-rw-r--r-- | engines/director/lingo/tests/math.lingo | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/director/lingo/tests/math.lingo b/engines/director/lingo/tests/math.lingo index 9c0b2d57a3..6f8ecc374f 100644 --- a/engines/director/lingo/tests/math.lingo +++ b/engines/director/lingo/tests/math.lingo @@ -12,6 +12,8 @@ set x = 2 + 3 * (4 / 2) put x put power(2, 8) +put power(2, 8, 0) +put power(2) updatestage -- Type conversion |