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
| // modules are defined as an array | |
| // [ module function, map of requires ] | |
| // | |
| // map of requires is short require name -> numeric require | |
| // | |
| // anything defined in a previous bundle is accessed via the | |
| // orig method which is the require for previous bundles | |
| (function (modules, entry, mainEntry, parcelRequireName, globalName) { | |
| /* eslint-disable no-undef */ |
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
| package rla; | |
| import java.util.*; | |
| public class BugwartsPathFinder { | |
| private static final char WALL = '#'; | |
| private static final char START = 'A'; | |
| private static final char END = 'B'; | |
| public static void main(String[] args) { |
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 Constellation{ | |
| ... | |
| @XStreamOmmitField | |
| private byte[] starCardData; | |
| } |
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
| <dependencies> | |
| <dependency> | |
| <groupId>org.easyb</groupId> | |
| <artifactId>easyb</artifactId> | |
| <version>0.9.8</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.codehaus.groovy</groupId> | |
| <artifactId>groovy-all</artifactId> | |
| <version>1.7.5</version> |
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
| class HelloWorld{ | |
| static def main(def args){ | |
| println "Hello World" | |
| } | |
| } |