mys
mys copied to clipboard
The Mys programming language - an attempt to create a statically typed Python-like language that produces fast binaries. See https://mys-lang.org for more information.
Just to remember what is left to do. The list is by no means complete. **General** - More on function overloading. - More on operator overloading. - Slices/sublist/substring, `[begin:end:step]`. Should...
Imported trait with default method using global variable does not work. Must change transpiler to generate default trait methods when generating containing module, not adding to class and generate in...
all compiler or runtime errors that could happen at various stage of using "mys" command, if able to get a source filename, maybe a line number and optionnal colummns +...
with reasonable defaults like i32 and f32. The main reason and it's an quite important one is that third parties C++ libraries like Panda3D or Bullet Physics can be built...
Following discord discussion on cross compiling, trying to canvas things to do. reminder ``` build: the machine you are building on host: the machine you are building for target: the...
**What did you do?** ```python @generic(T) def foo(a: T): pass @generic(T) def foo(a: T, b: T): pass def main(): foo[u8](1, 2) ``` **What did you expect to see?** Successful compilation....
```python from queue import Queue @trait class Message: pass def main(): queue = Queue[Message]() ```
# Patching CVE-2007-4559 Hi, we are security researchers from the Advanced Research Center at [Trellix](https://www.trellix.com). We have began a campaign to patch a widespread bug named CVE-2007-4559. CVE-2007-4559 is a...