Last active
February 3, 2026 20:24
-
-
Save dacr/df49ea6f8f30f47d04c1daea825545ea to your computer and use it in GitHub Desktop.
nqueens problems / published by https://github.com/dacr/code-examples-manager #99139e3f-da90-4bdc-b276-cbfe45005a32/b3a1875aa33de781aa97461d9cc3500236aa99d1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| exec scala "$0" "$@" | |
| !# | |
| // summary : nqueens problems | |
| // keywords : scala3, @testable | |
| // publish : gist | |
| // authors : David Crosson | |
| // license : Apache License Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) | |
| // id : 99139e3f-da90-4bdc-b276-cbfe45005a32 | |
| // created-on : 2021-04-08T16:04:35Z | |
| // managed-by : https://github.com/dacr/code-examples-manager | |
| // execution : scala3 REPL | |
| // TODO to be continued in fact started ! see youtube video from rock the jvm | |
| @main def go():Unit = { | |
| println("GO") | |
| } |
Author
thanks a lot ๐ and yes I forgot this one, started without being started... will be back on it one day
๐
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello, your gists look like a great resource.
When I came across this one, I thought it is not impossible that you might also be interested in https://fpilluminated.com/deck/7.
Apologies if this comes across as presumptuous of me :-). If so, please ignore.
Thanks,
Philip