(non-exhaustive list)
(Thoughts resulting from previous discussions (6374, 6543))
(Please also have a look again at Roger's talk from last year's UGM (direct link to PDF))
- InChIKey / SMILES (-> identity determination)
(non-exhaustive list)
(Thoughts resulting from previous discussions (6374, 6543))
(Please also have a look again at Roger's talk from last year's UGM (direct link to PDF))
| # ~/.config/starship.toml | |
| format = """ | |
| $username\ | |
| ${custom.screen}\ | |
| $hostname\ | |
| $shlvl\ | |
| $singularity\ | |
| $kubernetes\ | |
| $directory\ |
| import tables | |
| type | |
| Element* {.pure.} = enum | |
| invalid = (-1, "Inv"), | |
| unknown = (0, "*"), | |
| hydrogen = (1, "H"), | |
| boron = (5, "B"), | |
| carbon = (6, "C"), | |
| nitrogen = (7, "N"), |
| import tables | |
| type MyObj = ref object | |
| a: int | |
| t: Table[int, int] # where would this table be located? | |
| when isMainModule: | |
| var obj = MyObj(a: 1, t: {1: 1, 2: 2}.toTable) | |
| echo obj.t |
| Module structure: | |
| ~/dev/go/collect | |
| $ tree | |
| . | |
| ├── go.mod | |
| ├── go.sum | |
| ├── LICENSE.txt | |
| ├── maps | |
| │ ├── maps_gen.go | |
| │ ├── maps.go |