Helehex
Helehex
MModular
Created by Khaled M' on 4/1/2024 in #questions
Does anyone think Mojo could be great for Game Development?
btw @ValorZard, we have a secret community which is focused on game dev with mojo if you are interested :]
86 replies
MModular
Created by Khebabchi | خبابشي on 11/24/2024 in #questions
does mojo have access modifiers
whats the reason they broke ecapsulation, was it no access midifiers or just bad design
87 replies
MModular
Created by Khebabchi | خبابشي on 11/24/2024 in #questions
does mojo have access modifiers
most of the languages without access modifiers are interpreted
87 replies
MModular
Created by Khebabchi | خبابشي on 11/24/2024 in #questions
does mojo have access modifiers
yeah that ones a little different than the others, i've already talked about that enough
87 replies
MModular
Created by Khebabchi | خبابشي on 11/24/2024 in #questions
does mojo have access modifiers
well to me it's one of those things that people complain about in theory, but in practice is not actually worth having
87 replies
MModular
Created by Khebabchi | خبابشي on 11/24/2024 in #questions
does mojo have access modifiers
although the implementation of integers is a bit strange, but works for python
87 replies
MModular
Created by Khebabchi | خبابشي on 11/24/2024 in #questions
does mojo have access modifiers
and integers
87 replies
MModular
Created by Khebabchi | خبابشي on 11/24/2024 in #questions
does mojo have access modifiers
Access modifiers are on my list of things that python got right, along with block brackets and line delimiters
87 replies
MModular
Created by Khebabchi | خبابشي on 11/24/2024 in #questions
does mojo have access modifiers
it just makes it more difficut, which could be an upside
87 replies
MModular
Created by Khebabchi | خبابشي on 11/24/2024 in #questions
does mojo have access modifiers
not to mention if you want to access private anyways, you always can with reflection
87 replies
MModular
Created by Khebabchi | خبابشي on 11/24/2024 in #questions
does mojo have access modifiers
imo access modifiers are not worth it
87 replies
MModular
Created by Khebabchi | خبابشي on 11/24/2024 in #questions
does mojo have access modifiers
i hope they never land
87 replies
MModular
Created by Khebabchi | خبابشي on 11/24/2024 in #questions
does mojo have access modifiers
The lsp also follows the convention and hides things like var _data from the list of members
87 replies
MModular
Created by Khebabchi | خبابشي on 11/24/2024 in #questions
does mojo have access modifiers
no access modifiers, instead we use an underscore prefix to say something shouldn't be used in typical situations
87 replies
MModular
Created by Khebabchi | خبابشي on 11/23/2024 in #questions
does mojo have any graphics api binding ? like webgpu or opengl ?
Ryul0rds bindings, I did some work on them though https://github.com/Ryul0rd/sdl-bindings
4 replies
MModular
Created by Khaled M' on 4/1/2024 in #questions
Does anyone think Mojo could be great for Game Development?
here's an indirect link to the mojo game dev server if anyone else is interested in joining https://helehex.net/mojo/?gd=1
86 replies
MModular
Created by franchesoni on 10/17/2024 in #questions
mojo compile is non-deterministic ? (video)
must be getting some undefined behavior somewhere, probably accessing uninitialized memory
6 replies
MModular
Created by blblblbl on 10/16/2024 in #questions
How do safe Reference and List work together?
On latest nightly:
fn main():
var list: List[Int] = List(10,11,12)
var element = Pointer.address_of(list[0])
print(element[]) # prints 10
for i in range(10000):
list.append(i)
print(element[]) # prints 0
fn main():
var list: List[Int] = List(10,11,12)
var element = Pointer.address_of(list[0])
print(element[]) # prints 10
for i in range(10000):
list.append(i)
print(element[]) # prints 0
29 replies
MModular
Created by Khaled M' on 4/1/2024 in #questions
Does anyone think Mojo could be great for Game Development?
ok
86 replies
MModular
Created by Khaled M' on 4/1/2024 in #questions
Does anyone think Mojo could be great for Game Development?
i could grab a relevant domain name and link through there
86 replies