pull/6/head
Andreas Gysin 2022-04-03 14:20:19 +02:00
rodzic d4a9b859c9
commit 016e524e45
1 zmienionych plików z 17 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,17 @@
/**
[header]
@author ertdfgcvb
@title C64
@desc 10 PRINT CHR$(205.5+RND(1)); : GOTO 10
See also:
https://10print.org/10_PRINT_121114.pdf
*/
// Run the program only once
export const settings = {
once : true
}
export function main() {
return Math.random() < 0.5 ? '' : '╲'
}