This video gives more of a feel for the language. https://youtu.be/4WYxAfX_fTw It's definitely… interesting.
He uses both g_second and g_seconds without a compile error. Maybe the system defines both?
Beads: Computer language and toolchain
231–235 of 235 posts
Re: Beads: Computer language and toolchain
#232https://beadslang.org/blog/2021/3/23/rip-segmentation
This is.... gibberish. What's going on here? Are we being trolled?
http://pages.cs.wisc.edu/~solomon/cs537-old/last/segmentatio...
Unix has Paging but not segmentation. Segmentation allows you to grow a memory block without having to copy as it grows, something that just plain paging cannot do.
Re: Beads: Computer language and toolchain
#233So this is basically some sort of 4GL language for web dev?
Re: Beads: Computer language and toolchain
#234Earlier quoted context omitted.
I think he's saying that inside of the loop in FizzBuzz, it should look like something like this (Python-esque pseudocode, assuming for a second print() doesn't add a newline automatically): if x % 3 == 0: print("Fizz") if x % 5 == 0: print("Buzz") if x % 3 != 0 and x % 5 != 0: print(x) print("\n") i.e. no special "FizzBuzz" case for when it's divisible by 15, it just naturally falls out of the first two if's. It's a…
as I learned above you can use the "end" kwarg to avoid the newline: print("Fizz", end="")
Re: Beads: Computer language and toolchain
#235Is there a good tool in the same space? I'd love to have something _simple_ to develop quick-and-dirty desktop applications. RN does not qualify as "simple".