mirror of
https://github.com/gizak/termui.git
synced 2025-04-24 13:48:50 +08:00
6 lines
99 B
Makefile
6 lines
99 B
Makefile
.PHONY: run-examples
|
|
run-examples:
|
|
@for file in _examples/*.go; do \
|
|
go run $$file; \
|
|
done;
|