feat: add example scripts for argparse, bytes, dataset, html, markdown, uuid, wdantic, and web chat modules
Add comprehensive demo scripts showcasing the usage of multiple Wren modules including argument parsing, byte manipulation, in-memory dataset operations, HTML encoding/slugification, markdown-to-HTML conversion, UUID generation/validation, schema validation with wdantic, and a full web chat application with REST endpoints.
This commit is contained in:
@@ -110,6 +110,7 @@ OBJECTS += $(OBJDIR)/getnameinfo.o
|
||||
OBJECTS += $(OBJDIR)/idna.o
|
||||
OBJECTS += $(OBJDIR)/inet.o
|
||||
OBJECTS += $(OBJDIR)/base64.o
|
||||
OBJECTS += $(OBJDIR)/bytes.o
|
||||
OBJECTS += $(OBJDIR)/cJSON.o
|
||||
OBJECTS += $(OBJDIR)/crypto.o
|
||||
OBJECTS += $(OBJDIR)/datetime.o
|
||||
@@ -380,6 +381,9 @@ $(OBJDIR)/vm.o: ../../src/cli/vm.c
|
||||
$(OBJDIR)/base64.o: ../../src/module/base64.c
|
||||
@echo $(notdir $<)
|
||||
$(SILENT) $(CC) $(ALL_CFLAGS) $(FORCE_INCLUDE) -o "$@" -MF "$(@:%.o=%.d)" -c "$<"
|
||||
$(OBJDIR)/bytes.o: ../../src/module/bytes.c
|
||||
@echo $(notdir $<)
|
||||
$(SILENT) $(CC) $(ALL_CFLAGS) $(FORCE_INCLUDE) -o "$@" -MF "$(@:%.o=%.d)" -c "$<"
|
||||
$(OBJDIR)/cJSON.o: ../../deps/cjson/cJSON.c
|
||||
@echo $(notdir $<)
|
||||
$(SILENT) $(CC) $(ALL_CFLAGS) $(FORCE_INCLUDE) -o "$@" -MF "$(@:%.o=%.d)" -c "$<"
|
||||
|
||||
Reference in New Issue
Block a user