Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created September 30, 2019 00:25
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 IntegerMan/c60d5df80ecbf11c75fcc8f7983787f5 to your computer and use it in GitHub Desktop.
Save IntegerMan/c60d5df80ecbf11c75fcc8f7983787f5 to your computer and use it in GitHub Desktop.
namespace MattEland.FSharpGeneticAlgorithm.Logic
module WorldPos =
type WorldPos = {X: int32; Y:int32}
let newPos x y = {X = x; Y = y}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment