Discuss Scratch

Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

example code:
when run
ask [Hello!. What is your name?]
name = (ans)
say [Hello +(ans)+!]

Last edited by Rendangbike2 (Dec. 21, 2020 12:49:13)





mybearworld
Scratcher
1000+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

example code:
when run
ask [Hello!.+What+is+your+name?]
name = (ans)
say [Hello+(ans)!]
Hmmm… Why do you need to type + instead space?

Signatures are the only place where assets links still work.
Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

mybearworld wrote:

Rendangbike2 wrote:

example code:
when run
ask [Hello!.+What+is+your+name?]
name = (ans)
say [Hello+(ans)!]
Hmmm… Why do you need to type + instead space?
so joining will be easy! instead of
say (join [Hello] (ans))
it would be like this:
say [Hello+(ans)!]
and Python ‘'does’' this:
name = Scratchcat
print ('Hello '+ name +'!')
And the plus sign exist almost all keyboards!




mybearworld
Scratcher
1000+ posts

NewType, a new and easy programming language

You misunderstood my question. I meant:
say[Hello+world]
Where any programming language would do Ex. Python
print("Hello world") # No plus signs! Plus signs would be like
print("Hello" + " " + "world") # that is just weird.

Signatures are the only place where assets links still work.
Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

mybearworld wrote:

You misunderstood my question. I meant:
say[Hello+world]
Where any programming language would do Ex. Python
print("Hello world") # No plus signs! Plus signs would be like
print("Hello" + " " + "world") # that is just weird.
On second thought no plus signs but can someone make a better system that can join things?

Last edited by Rendangbike2 (Dec. 21, 2020 10:53:54)





Maximouse
Scratcher
1000+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

mybearworld wrote:

You misunderstood my question. I meant:
say[Hello+world]
Where any programming language would do Ex. Python
print("Hello world") # No plus signs! Plus signs would be like
print("Hello" + " " + "world") # that is just weird.
On second thought no plus signs but can someone make a better system that can join things?
Space should mean a space, and a plus sign should mean join but without a space in between.


This is Maximouse's signature. Learn more about signatures.
Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

Maximouse wrote:

Rendangbike2 wrote:

mybearworld wrote:

You misunderstood my question. I meant:
say[Hello+world]
Where any programming language would do Ex. Python
print("Hello world") # No plus signs! Plus signs would be like
print("Hello" + " " + "world") # that is just weird.
On second thought no plus signs but can someone make a better system that can join things?
Space should mean a space, and a plus sign should mean join but without a space in between.
Can you make an example?




Maximouse
Scratcher
1000+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

Maximouse wrote:

Space should mean a space, and a plus sign should mean join but without a space in between.
Can you make an example?
ask [What's your name?]
say [Hello +ans+!]
Or:
ask [What's your name?]
say [Hello (ans)!]


This is Maximouse's signature. Learn more about signatures.
Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

Maximouse wrote:

Rendangbike2 wrote:

Maximouse wrote:

Space should mean a space, and a plus sign should mean join but without a space in between.
Can you make an example?
ask [What's your name?]
say [Hello +ans+!]
Or:
ask [What's your name?]
say [Hello (ans)!]
Ok




Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

I will make a list for the colors




Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

Motion: #4c97ff
Looks: #9c69ff
Sounds: #cf64cf
Operators: #58be59
Events: #fabe07
Control: #ffaa1c
Sensing: #5eb5dc
Data: #fe8916
Custom Commands: #ff002b




mybearworld
Scratcher
1000+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

Motion: #4c97ff
Looks: #9c69ff
Sounds: #cf64cf
Operators: #58be59
Events: #fabe07
Control: #ffaa1c
Sensing: #5eb5dc
Data: #fe8916
Custom Commands: #ff002b

Motion:: #4c97ff
Looks:: #9c69ff
Sounds:: #cf64cf
Operators:: #58be59
Events:: #fabe07
Control:: #ffaa1c
Sensing:: #5eb5dc
Data:: #fe8916
Custom Commands:: #ff002b
Why are they all the Scratch colors, but not the custom ones?

Last edited by mybearworld (Dec. 22, 2020 09:45:41)


Signatures are the only place where assets links still work.
Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

mybearworld wrote:

Rendangbike2 wrote:

Motion: #4c97ff
Looks: #9c69ff
Sounds: #cf64cf
Operators: #58be59
Events: #fabe07
Control: #ffaa1c
Sensing: #5eb5dc
Data: #fe8916
Custom Commands: #ff002b

Motion:: #4c97ff
Looks:: #9c69ff
Sounds:: #cf64cf
Operators:: #58be59
Events:: #fabe07
Control:: #ffaa1c
Sensing:: #5eb5dc
Data:: #fe8916
Custom Commands:: #ff002b
Why are they all the Scratch colors, but not the custom ones?
If you look inside my newtype project and you see the backdrops. it is more based on the scratch 3.0 mockup




Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

Motion:: #4c97ff
Motion :: motion
Looks:: #9c69ff
Looks :: looks
Sounds:: #cf64cf
Sounds :: sound
Operators:: #58be59
Operators :: operators
Events:: #fabe07
Events :: events
Control:: #ffaa1c
Control :: control
Sensing:: #5eb5dc
Sensing :: sensing
Data:: #fe8916
Data :: variables
Custom Commands:: #ff002b
Custom Commands :: custom blocks




Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

somehow the forum won't let me do this
ask [Hello!]
It would look like this:
ask




mybearworld
Scratcher
1000+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

somehow the forum won't let me do this
ask [Hello!]
It would look like this:
ask
Yeah, you know BBCode? Like [b]Hello[/b]? The forums are built to make everything between [ these ] brackets disappear.
But you can do [[]Hello] to work around that.

Signatures are the only place where assets links still work.
Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

mybearworld wrote:

Rendangbike2 wrote:

somehow the forum won't let me do this
ask [Hello!]
It would look like this:
ask
Yeah, you know BBCode? Like [b]Hello[/b]? The forums are built to make everything between [ these ] brackets disappear.
But you can do [[]Hello] to work around that.
Is there something which can make it work?




Maximouse
Scratcher
1000+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

mybearworld wrote:

Rendangbike2 wrote:

somehow the forum won't let me do this
ask [Hello!]
It would look like this:
ask
Yeah, you know BBCode? Like [b]Hello[/b]? The forums are built to make everything between [ these ] brackets disappear.
But you can do [[]Hello] to work around that.
Is there something which can make it work?
As mybearworld said, [[]Hello!] becomes [Hello!].


This is Maximouse's signature. Learn more about signatures.
Rendangbike2
Scratcher
1000+ posts

NewType, a new and easy programming language

Maximouse wrote:

Rendangbike2 wrote:

mybearworld wrote:

Rendangbike2 wrote:

somehow the forum won't let me do this
ask [Hello!]
It would look like this:
ask
Yeah, you know BBCode? Like [b]Hello[/b]? The forums are built to make everything between [ these ] brackets disappear.
But you can do [[]Hello] to work around that.
Is there something which can make it work?
As mybearworld said, [[]Hello!] becomes [Hello!].
lemme try it
ask [Hello!]
yup it works!




mybearworld
Scratcher
1000+ posts

NewType, a new and easy programming language

Rendangbike2 wrote:

Maximouse wrote:

Rendangbike2 wrote:

mybearworld wrote:

Rendangbike2 wrote:

somehow the forum won't let me do this
ask [Hello!]
It would look like this:
ask
Yeah, you know BBCode? Like [b]Hello[/b]? The forums are built to make everything between [ these ] brackets disappear.
But you can do [[]Hello] to work around that.
Is there something which can make it work?
As mybearworld said, [[]Hello!] becomes [Hello!].
lemme try it
ask [Hello!]
yup it works!
Yeah, as I said :P

mybearworld wrote:

you can do [[]Hello] to work around that

Last edited by mybearworld (Dec. 23, 2020 14:00:40)


Signatures are the only place where assets links still work.

Powered by DjangoBB