|
| 1 | + |
| 2 | +<!DOCTYPE html> |
| 3 | +<html lang="en-us"> |
| 4 | +<meta charset="UTF-8"> |
| 5 | +<meta name="viewport" content="width=device-width, initial-scale=1"> |
| 6 | +<meta content="" name="keywords"> |
| 7 | +<meta content="elixirscript 0.27.0 released - Elixirscript" property="og:title"> |
| 8 | +<title>elixirscript 0.27.0 released | Elixirscript</title> |
| 9 | +<link rel="stylesheet" href="https://elixirscript.github.io/css/style.css"> |
| 10 | +<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"> |
| 11 | + |
| 12 | +<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/styles/github.min.css"> |
| 13 | + |
| 14 | + |
| 15 | +<section class="section"> |
| 16 | + <div class="container"> |
| 17 | + <nav class="nav"> |
| 18 | + <div class="nav-left"> |
| 19 | + <a class="nav-item" href="https://elixirscript.github.io"> |
| 20 | + <h1 class="title is-4">Elixirscript</h1> |
| 21 | + </a> |
| 22 | + </div> |
| 23 | + <div class="nav-right"> |
| 24 | + <nav class="nav-item level is-mobile"> |
| 25 | + <a class="level-item" href="/guide">Guide</a> |
| 26 | + <a class="level-item" href="https://github.com/elixirscript"> |
| 27 | + <span class="icon"> |
| 28 | + <i class="fa fa-github"></i> |
| 29 | + </span> |
| 30 | + </a> |
| 31 | + |
| 32 | + <a class="level-item" href="/index.xml"> |
| 33 | + <span class="icon"> |
| 34 | + <i class="fa fa-rss"></i> |
| 35 | + </span> |
| 36 | + </a> |
| 37 | + |
| 38 | + </nav> |
| 39 | + </div> |
| 40 | + </nav> |
| 41 | + </div> |
| 42 | +</section> |
| 43 | +<section class="section"> |
| 44 | + <div class="container"> |
| 45 | + <h2 class="subtitle is-6">March 17, 2017</h2> |
| 46 | + <h1 class="title">elixirscript 0.27.0 released</h1> |
| 47 | + |
| 48 | + <div class="content"> |
| 49 | + |
| 50 | + |
| 51 | +<p>For a full list of changes, check out out the <a href="https://github.com/elixirscript/elixirscript/blob/master/CHANGELOG.md">changelog</a>.</p> |
| 52 | + |
| 53 | +<p>Here are the major changes in this release:</p> |
| 54 | + |
| 55 | +<h2 id="super">Super</h2> |
| 56 | + |
| 57 | +<p>The <code>super</code> special form has been implemented and with it, <code>defoverridable</code></p> |
| 58 | + |
| 59 | +<h2 id="global-javascript-interop">Global JavaScript Interop</h2> |
| 60 | + |
| 61 | +<p>Any JavaScript function, property or module in the global namespace can be accessed by using the <code>JS</code> module</p> |
| 62 | + |
| 63 | +<pre><code class="language-elixir">JS.alert("hello") |
| 64 | + |
| 65 | +JS.console.log("hello") |
| 66 | + |
| 67 | +JS.Date.now() |
| 68 | +</code></pre> |
| 69 | + |
| 70 | + </div> |
| 71 | + </div> |
| 72 | +</section> |
| 73 | + |
| 74 | + |
| 75 | +<section class="section"> |
| 76 | + <div class="container has-text-centered"> |
| 77 | + <p></p> |
| 78 | + </div> |
| 79 | +</section> |
| 80 | +<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/highlight.min.js" integrity="sha256-KbfTjB0WZ8vvXngdpJGY3Yp3xKk+tttbqClO11anCIU=" crossorigin="anonymous"></script> |
| 81 | + |
| 82 | +<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/languages/elixir.min.js"></script> |
| 83 | + |
| 84 | +<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/languages/javascript.min.js"></script> |
| 85 | + |
| 86 | +<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/languages/bash.min.js"></script> |
| 87 | + |
| 88 | +<script>hljs.initHighlightingOnLoad();</script> |
| 89 | + |
| 90 | + |
0 commit comments