Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created October 6, 2019 03:16
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/3b8d7d247c14bafc2348e1c283886435 to your computer and use it in GitHub Desktop.
Save IntegerMan/3b8d7d247c14bafc2348e1c283886435 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