Fernando Raya
Fernando Raya
After creating the first project, I create a second one with the same name but different level. When I click on the view button of the second project an error...
https://github.com/fraya/opendylan/blob/cfbfeaf0bf507e9711dbd6fae0206c85142ac2d9/sources/system/tests/file-system.dylan#L26C13-L26C30
Implement tests in the file `opendylan/sources/system/tests/file-system.dylan` with comment `// ---*** Fill this in.`
Creates different arities for DFLN. typedef dylan_value (*DLFN0)(void); typedef dylan_value (*DLFN1)(dylan_value); typedef dylan_value (*DLFN2)(dylan_value, dylan_value); ... etc Changing DLFN to a union typedef union { void* raw; DLFN0 mep0; DLFN1...
This macro is defined in: - https://github.com/dylan-lang/opendylan/blob/45f46ba8b5f3ad949eb90976d626e0c1898e6c50/sources/common-dylan/timers.dylan#L47 - https://github.com/dylan-lang/opendylan/blob/45f46ba8b5f3ad949eb90976d626e0c1898e6c50/sources/system/unix-operating-system.dylan#L10 @cgay comment in chat that it should be exported from `common-dylan` and documented.
``` as(, "https://play.opendylan.org") Invalid URL 'https://play.opendylan.org/': no file or directory component ``` Conversion to `` works as expected. ``` as(, "https://play.opendylan.org") ``` Conversion to `` does not raise an error,...
https://github.com/dylan-lang/opendylan/blob/6501716f8f90464461d47ed3a07457db72d2f04f/documentation/source/proposals/dep-0008-multi-line-strings.rst?plain=1#L107
This issue is not caused by the project but is related to it. We need to update the regular expressions used by the [Pygments](https://pygments.org) library to take into account the...
It's difficult to know what is the difference between `#"overwrite"`, `#"new-version"` in `if-exists` and the combination with `direction:`. https://github.com/dylan-lang/opendylan/blob/a95679e64414372d2b542a5439bb4934e5d74c55/documentation/source/library-reference/io/streams.rst?plain=1#L1233