Skip to content

Instantly share code, notes, and snippets.

@SirmaXX
Created July 15, 2019 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SirmaXX/a468a5c277ec5e61f411c35217fdedbe to your computer and use it in GitHub Desktop.
Save SirmaXX/a468a5c277ec5e61f411c35217fdedbe to your computer and use it in GitHub Desktop.
Elm for beginner /Acemiler için elm
import Browser
import Html
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
-- MAIN
main: Html msg
main =
div[]
[
table[ ][
tr[] [
td[][text "asdasd"]
, td[][text "asdasd"]
, td[][text "asdasd"]
]
, tr[] [
td[][text "asdasd"]
, td[][text "asdasd"]
, td[][text "asdasd"]
]
]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment