We are currently working on new rules for what content should and shouldn't be allowed on this website, and are looking for feedback! See Esolang:2026 topicality proposal to view and give feedback on the current draft.
Talk:Dafne
I have moved the macros and unverifiable programs to a sketch page User:Miui/Dafnemacros, whether they are related to the L-system is TBD. Miui (talk) 21:46, 20 June 2026 (UTC)
Source code
I only see executables and RAR files on GitHub. Could you share the source code for your interpreter/compiler there as well? Corbin (talk) 21:54, 20 June 2026 (UTC)
- Yeah, absolutely. Give me some time and I will organize it. Generally, however if you have the proper initial set of cells you can use some batchfile and netpbm.
with input.ppm
P6 # Dafne et cetera 192 33 255
@echo off
setlocal enabledelayedexpansion
set "input=input.ppm"
for /l %%i in (9,1,999) do (
set "outfile=output%%i.ppm"
set /a line=0
>"!outfile!" (
for /f "usebackq delims=" %%A in ("%input%") do (
set /a line+=1
if !line! equ 3 (
echo %%i
) else (
echo %%A
)
)
)
echo
)
echo
where input.bin is here. (raw input.bin)
You can have a basic compiler using irfanview slideshow executable plugin lmao. (The Ð basis can be exploited in plaintext scr .exes) Granted I will hopefuly have a 1D interpreter at some point soon. Miui (talk) 01:09, 21 June 2026 (UTC)