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
data WidgetConfig t a | |
= WidgetConfig { _widgetConfig_setValue :: Event t a | |
, _widgetConfig_initialValue :: a | |
, _widgetConfig_attributes :: Dynamic t (Map String String) | |
} | |
makeLenses ''WidgetConfig | |
instance (Reflex t, Default a) => Default (WidgetConfig t a) where | |
def = WidgetConfig { _widgetConfig_setValue = never |
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
#printf | |
RUN printf '#!/bin/bash\n\ | |
echo hello world from line 1\n\ | |
echo hello world from line 2\n'\ | |
> /tmp/hello | |
## or you can use >> | |
RUN cat /tmp/hello | |
#echo |