diff options
Diffstat (limited to 'haxe.html.markdown')
| -rw-r--r-- | haxe.html.markdown | 27 | 
1 files changed, 13 insertions, 14 deletions
diff --git a/haxe.html.markdown b/haxe.html.markdown index ee214540..afb9d1a3 100644 --- a/haxe.html.markdown +++ b/haxe.html.markdown @@ -380,7 +380,7 @@ class LearnHaxe3{          // The "_" case above is a "wildcard" value          // that will match anything. -        trace("My dog's name is" + my_dog_name +        trace("My dog's name is " + my_dog_name                  + ", and his favorite thing is a: "                  + favorite_thing); @@ -406,7 +406,7 @@ class LearnHaxe3{              default     : "some unknown treat";          } -        trace("My dog's name is" + my_dog_name +        trace("My dog's name is " + my_dog_name                  + ", and his other favorite thing is a: "                  + other_favorite_thing); @@ -466,7 +466,7 @@ class LearnHaxe3{             The untyped keyword operates on entire *blocks* of code, skipping             any type checks that might be otherwise required. This keyword should             be used very sparingly, such as in limited conditionally-compiled -           situations where type checking is a hinderance. +           situations where type checking is a hindrance.             In general, skipping type checks is *not* recommended.  Use the             enum, inheritance, or structural type models in order to help ensure @@ -770,19 +770,18 @@ class UsingExample {  ```  We're still only scratching the surface here of what Haxe can do.  For a formal -overiew of all Haxe features, checkout the [online -manual](http://haxe.org/manual), the [online api](http://api.haxe.org/), and -"haxelib", the [haxe library repo] (http://lib.haxe.org/). +overview of all Haxe features, see the [manual](https://haxe.org/manual) and +the [API docs](https://api.haxe.org/). For a comprehensive directory of available +third-party Haxe libraries, see [Haxelib](https://lib.haxe.org/).  For more advanced topics, consider checking out: -* [Abstract types](http://haxe.org/manual/abstracts) -* [Macros](http://haxe.org/manual/macros), and [Compiler Macros](http://haxe.org/manual/macros_compiler) -* [Tips and Tricks](http://haxe.org/manual/tips_and_tricks) - - -Finally, please join us on [the mailing list](https://groups.google.com/forum/#!forum/haxelang), on IRC [#haxe on -freenode](http://webchat.freenode.net/), or on -[Google+](https://plus.google.com/communities/103302587329918132234). +* [Abstract types](https://haxe.org/manual/types-abstract.html) +* [Macros](https://haxe.org/manual/macro.html) +* [Compiler Features](https://haxe.org/manual/cr-features.html) +Finally, please join us on [the Haxe forum](https://community.haxe.org/), +on IRC [#haxe on +freenode](http://webchat.freenode.net/), or on the +[Haxe Gitter chat](https://gitter.im/HaxeFoundation/haxe).  | 
