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
| ;;definetly subject to more change, but i made a big switch so here you go | |
| (defcfg | |
| process-unmapped-keys yes | |
| windows-altgr add-lctl-release | |
| ) | |
| (defsrc | |
| pgup pgdn | |
| q w e r t y u i o p | |
| caps a s d f g h j k l ; | |
| z x c v b n m up |
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
| public class Kniha | |
| { | |
| private String nazev; | |
| private String autor; | |
| private static volatile Kniha instance; | |
| private Kniha() | |
| { | |
| this.nazev = "Harry Potter"; | |
| this.autor = "Rowlingová"; | |
| } |