NaaLaa
min TEST 1 - Printable Version

+- NaaLaa (https://www.naalaa.com/forum)
+-- Forum: Other (https://www.naalaa.com/forum/forum-8.html)
+--- Forum: Programming (https://www.naalaa.com/forum/forum-9.html)
+--- Thread: min TEST 1 (/thread-79.html)



min TEST 1 - aurel - 02-16-2024

min TEST 1 src loaded

be  careful ,this is trick question !

what is this ?

   


RE: min TEST 1 - johnno56 - 02-16-2024

Ooo... I like trick questions! Most of the time I cannot figure them out, but I still like them...

Attempt #1: what is this ? <- a question mark... (did I get it right?)


RE: min TEST 1 - Tomaaz - 02-16-2024

(02-16-2024, 02:13 PM)aurel Wrote: what is this ?

A blurry screenshot?


RE: min TEST 1 - 1micha.elok - 02-16-2024

(02-16-2024, 02:13 PM)aurel Wrote: min TEST 1 src loaded

be  careful ,this is trick question !

what is this ?

Are you " the Aurel " who created " Aurel Basic " and " Micro(A) Programming " ?


RE: min TEST 1 - Marcus - 02-17-2024

I tried writing the code in n7:
Code:
function demo()
    a = "math expressions "
    b = (10 + 1*2 + (4 + 5)*2)*3 - int("111")
    pln "Test " + a + b
    if 0*|5 > -2|*0 write "True"
    else write "False"
    x = 0
    while x < 20
        if not x < 10 break
        write "."
        x = x + 1
    wend
endfunc
pln "Hello World!"
demo()

pln
system "pause"

But I'm not sure if a |<expr>| is the same thing as 'abs' in the language you're using or if there is implicit multiplication where you write "0|5 >= -2|0". Anyhow, I get the output:

Hello World!
Test math expressions -21
False..........

But since it's a trick question I assume that's not the answer Big Grin


RE: min TEST 1 - aurel - 02-17-2024

yes @marcus Wink

@elok
yes i am


RE: min TEST 1 - aurel - 02-18-2024

what is this :

if ident in variable and variable[ident][0] == 's': s = variable[ident][1]

do i understand this or i am totally wrong Big Grin

1. ident is string ? but how can be index if is index?

2. variable is string array ? OR is List ?

3.index base is 0 ..right ?

OMG Big Grin freak-show  Dodgy


RE: min TEST 1 - 1micha.elok - 02-18-2024

(02-18-2024, 11:46 AM)aurel Wrote: what is this :

if ident in variable and variable[ident][0] == 's': s = variable[ident][1]

do i understand this or i am totally wrong Big Grin

1. ident is string ? but how can be index if is index?

2. variable is string array ? OR is List ?

3.index base is 0 ..right ?

OMG Big Grin freak-show  Dodgy

I'm glad Naalaa doesn't have that kind of "ident"  Big Grin


RE: min TEST 1 - aurel - 02-18-2024

yes Elok...i agree

but i made mistake

1. ident is string ? but how can be string if is index?

strange problem with python like interpreter..
arghhh ...it looks that i must use some sort of pointer to
translate this one ..

Big Grin